--- a/chapters/25.markdown Thu Apr 04 01:38:14 2013 -0400
+++ b/chapters/25.markdown Sun Feb 02 21:42:29 2014 -0800
@@ -48,7 +48,7 @@
:::vim
:echo 100.1
-Notice that we're using `echo` here and not `echom` like we usually to. We'll
+Notice that we're using `echo` here and not `echom` like we usually do. We'll
talk about why in a moment.
Vim displays `100.1` as expected. You can also use exponential notation. Run
--- a/chapters/28.markdown Thu Apr 04 01:38:14 2013 -0400
+++ b/chapters/28.markdown Sun Feb 02 21:42:29 2014 -0800
@@ -34,9 +34,9 @@
the path of the previous buffer. You can play with it using `echom` if you want
to see for yourself.
-Once `bufname` is evaluated Vim the string `"rightbelow vsplit bar.txt"`. The
-`execute` command evaluates this as a Vimscript command which opens the split
-with the file.
+Once `bufname` is evaluated Vim builds the string `"rightbelow vsplit
+bar.txt"`. The `execute` command evaluates this as a Vimscript command which
+opens the split with the file.
Is Execute Dangerous?
---------------------