summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobiasz Małecki <tobiasz.malecki@appunite.com>2019-02-05 01:51:16 +0100
committerEric Meadows-Jönsson <eric.meadows.jonsson@gmail.com>2019-02-05 01:51:16 +0100
commite0b7efdcd8bf61f00d00f7be7a8ce688f6a5778d (patch)
tree51c6d597841cf06a1fa364a25ff6b9d34f3af98f
parente18d46f60060029ab4b0ec8a01d62f491908d5a3 (diff)
downloadelixir-e0b7efdcd8bf61f00d00f7be7a8ce688f6a5778d.tar.gz
Fix typo in syntax reference page (#8770)
-rw-r--r--lib/elixir/pages/Syntax Reference.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/elixir/pages/Syntax Reference.md b/lib/elixir/pages/Syntax Reference.md
index 631325b60..0bc6a550b 100644
--- a/lib/elixir/pages/Syntax Reference.md
+++ b/lib/elixir/pages/Syntax Reference.md
@@ -21,7 +21,7 @@ Integers (`1234`) and floats (`123.4`) in Elixir are represented as a sequence o
### Atoms
-Unquoted atoms start with a colon (`:`) which must be inmediately followed by an underscore or a Unicode letter. The atom may continue using a sequence of Unicode letters, numbers, underscores, and `@`. Atoms may end in `!` or `?`. See [Unicode Syntax](unicode-syntax.html) for a formal specification. Valid unquoted atoms are: `:ok`, `:ISO8601`, and `:integer?`.
+Unquoted atoms start with a colon (`:`) which must be immediately followed by an underscore or a Unicode letter. The atom may continue using a sequence of Unicode letters, numbers, underscores, and `@`. Atoms may end in `!` or `?`. See [Unicode Syntax](unicode-syntax.html) for a formal specification. Valid unquoted atoms are: `:ok`, `:ISO8601`, and `:integer?`.
If the colon is immediately followed by a pair of double- or single-quotes surrounding the atom name, the atom is considered quoted. In contrast with an unquoted atom, this one can be made of any Unicode character (not only letters), such as `:'🌢 Elixir'`, `:"++olá++"`, and `:"123"`.