Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ lisp> (+ 1 3)
4
```

Wich would return `4` and would be equivalent of:
Which would return `4` and would be equivalent of:

```julia
lisp> (+ 1 3)
Expand Down Expand Up @@ -144,7 +144,7 @@ result = 46 - 8
result = 38
```

Now let's try the same thing in ``LispSuntax:
Now let's try the same thing in `LispSyntax`:

```julia
(def result (- (/ (+ 1 3 88) 2) 8))
Expand Down