1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-29 17:40:42 +02:00
This commit is contained in:
Bryan McKnight
2024-05-20 11:16:40 -05:00
committed by GitHub
parent 64dcb689df
commit 5c7cfb7575

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