Commit ef7c370a authored by Russ Cox's avatar Russ Cox

typo

Fixes #69.

R=r
https://golang.org/cl/152082
parent f07a9e43
...@@ -1467,7 +1467,7 @@ func (p *ByteSlice) Write(data []byte) (n int, err os.Error) { ...@@ -1467,7 +1467,7 @@ func (p *ByteSlice) Write(data []byte) (n int, err os.Error) {
slice := *p; slice := *p;
// Again as above. // Again as above.
*p = slice; *p = slice;
return len(data), nil) return len(data), nil;
} }
</pre> </pre>
<p> <p>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment