Commit Diff


commit - 190821ba563ad71c6ed06828199b25498133b9b5
commit + 70b3c166a874b3cd0f1acb19615791821752daf8
blob - 50901f504e1f58b6062d866b4078cf4c410692ac
blob + d4b53936eb74b8a88a66c841f14d808b5ccff04d
--- index.md
+++ index.md
@@ -191,7 +191,7 @@ width = 40
 
 ## Convert to lowercase
 
-	 :%s/.*/\L&/
+	:%s/.*/\L&/
 
 
 ## Join all lines
@@ -214,8 +214,8 @@ Select 3rd column separated by colon (`:`)
 
 ## Insert the sum of a list of numbers after an arbitrary number of lines
 
-1) mark the first line: `mk`
-2) mark the last line: `ml`
+(1) mark the first line: `mk`
+(2) mark the last line: `ml`
 
 <pre>
 :'k,'l!awk 'END{print "<em>total:</em>", i}{i+=$1; print}'