Skip to content

Commit 3164ae3

Browse files
committed
fix Julia string bug
1 parent 86eb7e1 commit 3164ae3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

encode-decode/julia.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ bytes in the specified encoding and returns a string.
88
```julia
99
using UnicodeExtras
1010

11-
utf16 = encode(str, 'UTF-16')
12-
str = decode(utf16, 'UTF-16')
11+
utf16 = encode(str, "UTF-16")
12+
str = decode(utf16, "UTF-16")
1313
```

0 commit comments

Comments
 (0)