Skip to content

Commit cbc3678

Browse files
authored
Update README.md
1 parent e1871f9 commit cbc3678

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
## Syntax changes
2222
We made four adjustments to the F syntax:
23-
1. We decided to interchange the semicolons between multiple `Local Definitions` with commas because we wanted semicolons to be used only between multiple `Definitions` (for better readability).
23+
1. We decided to interchange the semicolons between multiple `Local Definitions` with commas because we wanted semicolons to be used exclusively between multiple `Definitions` (for better readability).
2424

2525
2. According to the script the precedence of the negation should be lower than the precedence of an addition. This would lead to `-5 + 2` being evaluated as `-7`. We wanted our syntax to be more intuitive so we changed the precedences to let `-5 + 2` be evaluated as `-3`.
2626

@@ -111,4 +111,4 @@ Each module provides a `function` and a `showFunction`. When other modules want
111111
```Shell
112112
ghci myProgram.hs
113113
example
114-
```
114+
```

0 commit comments

Comments
 (0)