Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
marcauberer committed Jun 15, 2024
1 parent da6fe9b commit c286be5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion std/data/map.spice
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public p Map.clear() {
}

/**
* Iterator to iterate over a map data structurs
* Iterator to iterate over a map data structure
*/
public type MapIterator<K, V> struct : IIterator<Pair<const K&, V&>> {
RedBlackTreeIterator<K, V> rbtIterator
Expand Down
2 changes: 1 addition & 1 deletion std/data/red-black-tree.spice
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ p RedBlackTree.clearRecursive(heap Node<K, V>* node) {
}

/**
* Iterator to iterate over a red black tree data structurs
* Iterator to iterate over a red black tree data structure
*/
public type RedBlackTreeIterator<K, V> struct : IIterator<Pair<const K&, V&>> {
RedBlackTree<K, V>& tree
Expand Down

0 comments on commit c286be5

Please sign in to comment.