Fix typos (#191)

This commit is contained in:
delirious-lettuce
2017-05-15 22:30:12 -06:00
committed by Donne Martin
parent cd9e9654bc
commit 9f89a51aba
33 changed files with 71 additions and 71 deletions

View File

@@ -54,7 +54,7 @@
"\n",
"* `get` no matching key -> KeyError exception\n",
"* `get` matching key -> value\n",
"* `set` no matchin gkey -> new key, value\n",
"* `set` no matching key -> new key, value\n",
"* `set` matching key -> update value\n",
"* `remove` no matching key -> KeyError exception\n",
"* `remove` matching key -> remove key, value"

View File

@@ -53,7 +53,7 @@
"\n",
"* `get` no matching key -> KeyError exception\n",
"* `get` matching key -> value\n",
"* `set` no matchin gkey -> new key, value\n",
"* `set` no matching key -> new key, value\n",
"* `set` matching key -> update value\n",
"* `remove` no matching key -> KeyError exception\n",
"* `remove` matching key -> remove key, value"

View File

@@ -164,7 +164,7 @@
"* Scan each character\n",
"* For each character:\n",
" * Scan all [other] characters in the array\n",
" * Exluding the current character from the scan is rather tricky in Python and results in a non-Pythonic solution\n",
" * Excluding the current character from the scan is rather tricky in Python and results in a non-Pythonic solution\n",
" * If there is a match, return False\n",
"* Return True\n",
"\n",