2600b031f163
Fix some typos
author | Eduardo Lopez Biagi <eduardo.biagi@gmail.com> |
---|---|
date | Sun, 02 Feb 2014 21:42:29 -0800 |
parents | 56683eb09ecc |
children | 469bfd3284dd |
branches/tags | (none) |
files | chapters/25.markdown chapters/28.markdown |
Changes
--- 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? ---------------------