# HG changeset patch
# User Eduardo Lopez Biagi <eduardo.biagi@gmail.com>
# Date 1391406149 28800
# Node ID 2600b031f163440d47b41c56be4040d503cdd3eb
# Parent  56683eb09eccdb4a4baf43302761ed348197c1cc
Fix some typos

diff -r 56683eb09ecc -r 2600b031f163 chapters/25.markdown
--- 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
diff -r 56683eb09ecc -r 2600b031f163 chapters/28.markdown
--- 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?
 ---------------------