This commit is contained in:
Bryan McKnight 2024-05-20 11:16:40 -05:00 committed by GitHub
parent 64dcb689df
commit 5c7cfb7575
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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