diff options
author | Nic <nicmalan@gmail.com> | 2021-08-22 17:21:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-22 17:21:22 +0200 |
commit | 1854d9d9b1f25cd8310e804c2ff7b63fed492230 (patch) | |
tree | c3e2f1f0d121ef5f28444583e9654460b9dbc8b6 /elixir.html.markdown | |
parent | cdbdf7080900efa29ea5617c3ea77e7cf1442444 (diff) |
[elixir/en] Update description of an Atom. (#4216)
I really struggled to parse what was being explained, but found the wording on https://hexdocs.pm/elixir/1.12/Atom.html much easier to understand.
Diffstat (limited to 'elixir.html.markdown')
-rw-r--r-- | elixir.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elixir.html.markdown b/elixir.html.markdown index 8b80c582..9f96be49 100644 --- a/elixir.html.markdown +++ b/elixir.html.markdown @@ -33,7 +33,7 @@ and many more features. 0x1F # integer 3.0 # float -# Atoms, that are literals, a constant with name. They start with `:`. +# Atoms are constants whose values are their own name. They start with `:`. :hello # atom # Tuples that are stored contiguously in memory. |