aa9595597042

oxford it
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Sat, 16 Jun 2012 16:14:00 -0400
parents fa2312e930b1
children 0b3fa842dbe9
branches/tags (none)
files chapters/35.markdown

Changes

--- a/chapters/35.markdown	Sat Jun 16 16:12:39 2012 -0400
+++ b/chapters/35.markdown	Sat Jun 16 16:14:00 2012 -0400
@@ -133,7 +133,7 @@
     :echo join(foo, '---')
     :echo join([1, 2, 3], '')
 
-Vim displays "a b", "a---b" and "123".  `join` will join the items in the given
+Vim displays "a b", "a---b", and "123".  `join` will join the items in the given
 list together into a string, separated by the given separator string (or a space
 if none is given), coercing each item to a string if necessary/possible.