Skip to content

Commit 0faf88a

Browse files
Kelvin LauKelvin Lau
authored andcommitted
Fixed a typo.
1 parent b563b93 commit 0faf88a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Trie/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
A `Trie`, (also known as a prefix tree, or radix tree in some other implementations) is a special type of tree used to store associative data structures. A `Trie` for a dictionary might look like this:
66

7-
![A Trie](Images/trie.png)
7+
![A Trie](images/trie.png)
88

99
Storing the English language is a primary use case for a `Trie`. Each node in the `Trie` would representing a single character of a word. A series of nodes then make up a word.
1010

0 commit comments

Comments
 (0)