Skip to content

Commit 6c935ca

Browse files
committed
Clarify charlists intro, closes #13663
1 parent d1076e4 commit 6c935ca

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: lib/elixir/pages/getting-started/binaries-strings-and-charlists.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ iex> is_binary(string)
99
true
1010
```
1111

12-
In this chapter, we will gain clarity on what exactly binaries are, how they relate to strings, and what single-quoted values, `'like this'`, mean in Elixir. Although strings are one of the most common data types in computer languages, they are subtly complex and are often misunderstood. To understand strings in Elixir, we have to educate ourselves about [Unicode](https://en.wikipedia.org/wiki/Unicode) and character encodings, specifically the [UTF-8](https://en.wikipedia.org/wiki/UTF-8) encoding.
12+
In this chapter, we will gain clarity on what exactly binaries are and how they relate to strings. We will also learn about charlists, `~c"like this"`, which are often used for interoperability with Erlang.
13+
14+
Although strings are one of the most common data types in computer languages, they are subtly complex and are often misunderstood. To understand strings in Elixir, let's first discuss [Unicode](https://en.wikipedia.org/wiki/Unicode) and character encodings, specifically the [UTF-8](https://en.wikipedia.org/wiki/UTF-8) encoding.
1315

1416
## Unicode and Code Points
1517

0 commit comments

Comments
 (0)