Skip to content

Commit

Permalink
amend spelling mistakes for insert() method
Browse files Browse the repository at this point in the history
  • Loading branch information
mengweichao committed Dec 16, 2015
1 parent 6af4bcf commit 6c4151b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/implementation.html
Expand Up @@ -66,7 +66,7 @@ <h3><tt>insert()</tt></h3>
replaces vector[3] with the new value. If the lookup fails, then the
code must insert a new entry into the middle of the vector. Again, to
insert at position i, the code must count all the bitmap entries &lt;= i
that are set to i. This indicates the position to insert into the
that are set to 1. This indicates the position to insert into the
vector. All vector entries above that position must be moved to make
room for the new entry. This takes time, but still constant time
since the vector has size at most M.</p>
Expand Down

0 comments on commit 6c4151b

Please sign in to comment.