# HG changeset patch # User Richard Russon (flatcap) # Date 1334971775 -3600 # Node ID 718ebbd352a537d8d524ff0809669b21d39fad4d # Parent a2fb13918fc6987c4221510f54a303cd898b1809 Replace "parenthesis" with noun plural "parentheses" diff -r a2fb13918fc6 -r 718ebbd352a5 chapters/15.markdown --- a/chapters/15.markdown Sat Apr 21 02:28:18 2012 +0100 +++ b/chapters/15.markdown Sat Apr 21 02:29:35 2012 +0100 @@ -100,11 +100,11 @@ Put your cursor somewhere in the word "print" and type `cin(`. Vim will delete the contents of the parentheses and place you in insert mode between them. -You can think of this mapping as meaning "inside next parenthesis", and it will -perform the operator on the text inside the next set of parenthesis on the +You can think of this mapping as meaning "inside next parentheses", and it will +perform the operator on the text inside the next set of parentheses on the current line. -Let's make a companion "inside last parenthesis" ("previous" would be a better +Let's make a companion "inside last parentheses" ("previous" would be a better word, but it would shadow the "paragraph" movement). Run the following command: :::vim @@ -153,8 +153,8 @@ Exercises --------- -Create operator-pending mappings for "around next parenthesis" and "around last -parenthesis". +Create operator-pending mappings for "around next parentheses" and "around last +parentheses". Create similar mappings for in/around next/last for curly brackets.