--- a/chapters/52.markdown Wed Apr 03 23:07:34 2013 -0400
+++ b/chapters/52.markdown Wed Apr 03 23:07:38 2013 -0400
@@ -33,7 +33,7 @@
if that variable isn't already set. We've seen this kind of check before.
This will allow users to override it if `potion` isn't in their `$PATH` by
-putting a line like `set g:potion_command = "/Users/sjl/src/potion/potion"` in
+putting a line like `let g:potion_command = "/Users/sjl/src/potion/potion"` in
their `~/.vimrc` file.
The last line adds a buffer-local mapping that calls a function we've defined
@@ -271,7 +271,7 @@
call append(0, split(bytecode, '\v\n'))
endfunction
-The `append()` Vim function take two arguments: a line number to append after,
+The `append()` Vim function takes two arguments: a line number to append after,
and a list of Strings to append as lines. For example, try running the
following command: