Skip to content

Commit 09332bb

Browse files
authored
Update introduction.md (#737)
Fix typos
1 parent cbce1a3 commit 09332bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/concept/high-scores/.docs/introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ To get a value by a key from the hash table you use the `gethash` function:
2424
; T
2525
```
2626

27-
`gethash` returns [multiple values][concepts-multiple-values] which will be explained in another concept.
27+
`gethash` returns [multiple values][concept-multiple-values] which will be explained in another concept.
2828

2929
### Inserting values
3030

3131
To insert a value into a hash table you use `setf` with `gethash` like this:
3232

33-
`(setf (gethash :foo *hash-table*) :bar) : => :bar`
33+
`(setf (gethash :foo *hash-table*) :bar) ; => :bar`
3434

3535
This will modify the value for the key `:foo` in the hash table `*hash-table*` to be `:bar`.
3636
It returns the value.

0 commit comments

Comments
 (0)