diff options
author | LuxLang | 2015-05-05 06:39:06 -0400 |
---|---|---|
committer | LuxLang | 2015-05-05 06:39:06 -0400 |
commit | 9f82bc2126083523b207571054209be85b3a7474 (patch) | |
tree | ee91e32a8e436f2ef613ebb1391759f9e31e5bcc | |
parent | 477019d54edddf7c5add3662bc54bc5ca78baee5 (diff) | |
parent | ebcbd799e6fce59cfac8c1f1f747f98b3abd09ce (diff) |
Merge pull request #3 from michael-okeefe/patch-1
Fix small typo signaturs -> signatures
Diffstat (limited to '')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ If you wonder what types look like without makeup, feel free to read the first f The module system is heavily inspired by ML, and both signatures & structures are suported. -The main difference between Lux and ML is that ML separates signaturs & structures from the rest of the language, whereas Lux implements them on-top of the base language. +The main difference between Lux and ML is that ML separates signatures & structures from the rest of the language, whereas Lux implements them on-top of the base language. How? By implementing signatures as record-types and structures as actual records. |