Skip to content

Commit 4948c39

Browse files
committed
Merge pull request elixir-lang#672 from endersstocker/update-string-guide
Update string guide
2 parents 69eb55a + 432ed6b commit 4948c39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

getting-started/binaries-strings-and-char-lists.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ iex> String.codepoints("hełło")
5555
["h", "e", "ł", "ł", "o"]
5656
```
5757

58-
You will see that Elixir has excellent support for working with strings. It also supports many of the Unicode operations. In fact, Elixir passes all but the last test showcased in the article ["The string type is broken"](http://mortoray.com/2013/11/27/the-string-type-is-broken/).
58+
You will see that Elixir has excellent support for working with strings. It also supports many of the Unicode operations. In fact, Elixir passes all the tests showcased in the article ["The string type is broken"](http://mortoray.com/2013/11/27/the-string-type-is-broken/).
5959

6060
However, strings are just part of the story. If a string is a binary, and we have used the `is_binary/1` function, Elixir must have an underlying type empowering strings. And it does. Let's talk about binaries!
6161

0 commit comments

Comments
 (0)