Skip to content

Commit daad441

Browse files
committed
Fix typo
1 parent 9a07b99 commit daad441

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/datastructures.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ cache = DataStructures.LRUCache{Int, Int}(; max_size = 128)
3232
```
3333

3434
Once we have the `cache`, we can access and insert elements with `get!`.
35-
`get!` retrieves the value associated to the key if avaialble, otherwise
35+
`get!` retrieves the value associated to the key if available, otherwise
3636
it inserts a new key with a provided default. The default can be passed as
3737
third argument or can be the return statement of a function provided as
3838
first (as typically done in `do` blocks). Continuing the example above

0 commit comments

Comments
 (0)