diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2018-05-07 17:59:06 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2018-05-07 17:59:06 +0200 |
| commit | 9e0846e8a4beebff36c72f03479a7db775b5144e (patch) | |
| tree | 5be248f1b661837ea2378648676e3f0f8d5746c6 /vm/vmimpl/console_darwin.go | |
| parent | 99c1f486598445575a3a624bf70dc6a31f60d365 (diff) | |
all: get rid of underscores in identifiers
Underscores are against Go coding style.
Update #538
Diffstat (limited to 'vm/vmimpl/console_darwin.go')
| -rw-r--r-- | vm/vmimpl/console_darwin.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vm/vmimpl/console_darwin.go b/vm/vmimpl/console_darwin.go index 15909ae57..1de3380c0 100644 --- a/vm/vmimpl/console_darwin.go +++ b/vm/vmimpl/console_darwin.go @@ -6,8 +6,8 @@ package vmimpl import "syscall" const ( - unix_CBAUD = 0 - unix_CRTSCTS = 0 - syscall_TCGETS = syscall.TIOCGETA - syscall_TCSETS = syscall.TIOCSETA + unixCBAUD = 0 + unixCRTSCTS = 0 + syscallTCGETS = syscall.TIOCGETA + syscallTCSETS = syscall.TIOCSETA ) |
