diff options
author | Michael Pratt <mpratt@google.com> | 2019-02-28 18:46:17 -0800 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-02-28 18:47:13 -0800 |
commit | 088c6522b2bb76ea354797cee3cf01c6459eacbc (patch) | |
tree | bc2ec4bf16c616171e9290b671239cc67954b414 /pkg/p9 | |
parent | 3b44377eda93137212e6e437b62dcb216566b858 (diff) |
Fix typo
PiperOrigin-RevId: 236239090
Change-Id: I92e63d6f4b52b78852626c87743fdd86175e09d3
Diffstat (limited to 'pkg/p9')
-rw-r--r-- | pkg/p9/handlers.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/p9/handlers.go b/pkg/p9/handlers.go index f05615d60..c1d1ac1e8 100644 --- a/pkg/p9/handlers.go +++ b/pkg/p9/handlers.go @@ -719,7 +719,7 @@ func (t *Twrite) handle(cs *connState) message { return syscall.EINVAL } - // Can it be write? Check permissions. + // Can it be written? Check permissions. if openFlags&OpenFlagsModeMask == ReadOnly { return syscall.EPERM } |