diff options
author | Bryan McKnight <github.absurd854@passmail.net> | 2024-05-20 11:16:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-20 18:16:40 +0200 |
commit | 5c7cfb75754867e22ab7e080ceafea569b3cffc1 (patch) | |
tree | 4d03627dc1fdd93e29049352c1dc2e92c0ce7ef2 /elixir.html.markdown | |
parent | 64dcb689dfd24314b685d65042a5d5b78dbe7ecb (diff) |
Typo fix (#4957)
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 c4da22e8..fcff8a69 100644 --- a/elixir.html.markdown +++ b/elixir.html.markdown @@ -146,7 +146,7 @@ nil && 20 #=> nil 1 == 1.0 #=> true 1 === 1.0 #=> false -# Elixir operators are strict in theiar arguments, with the exception +# Elixir operators are strict in their arguments, with the exception # of comparison operators that work across different data types: 1 < :hello #=> true |