File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
exercises/concept/high-scores/.docs Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,13 @@ To get a value by a key from the hash table you use the `gethash` function:
24
24
; T
25
25
```
26
26
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.
28
28
29
29
### Inserting values
30
30
31
31
To insert a value into a hash table you use ` setf ` with ` gethash ` like this:
32
32
33
- ` (setf (gethash :foo *hash-table*) :bar) : => :bar `
33
+ ` (setf (gethash :foo *hash-table*) :bar) ; => :bar `
34
34
35
35
This will modify the value for the key ` :foo ` in the hash table ` *hash-table* ` to be ` :bar ` .
36
36
It returns the value.
You can’t perform that action at this time.
0 commit comments