@@ -4,7 +4,7 @@
```go
str:="hello"
-c:=[]byte(s)
+c:=[]byte(str)
c[0]='c'
s2:= string(c) // s2 == "cello"
```