changeset 4335:66a3fe30f9fc

minor typo fix in templater's docstring
author TK Soh <teekaysoh@yahoo.com>
date Tue, 10 Apr 2007 12:24:28 -0500
parents 4f721e96f1de
children 35ad84669ca5 23068518deca f4a1eac52d43 26a2fa9433b8
files mercurial/templater.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/templater.py
+++ b/mercurial/templater.py
@@ -28,7 +28,7 @@ class templater(object):
     is treated as name of template file.
 
     templater is asked to expand a key in map. it looks up key, and
-    looks for atrings like this: {foo}. it expands {foo} by looking up
+    looks for strings like this: {foo}. it expands {foo} by looking up
     foo in map, and substituting it. expansion is recursive: it stops
     when there is no more {foo} to replace.