[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.
This commit is contained in:
Nic 2021-08-22 17:21:22 +02:00 committed by GitHub
parent cdbdf70809
commit 1854d9d9b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.