# HG changeset patch
# User TK Soh <teekaysoh@yahoo.com>
# Date 2007-04-10 17:24:28
# Node ID 66a3fe30f9fc7ec3d66af1b8f18cce325bbb133a
# Parent  4f721e96f1deae44bc3f23c39cab3619ce50ed0b

minor typo fix in templater's docstring

diff --git a/mercurial/templater.py b/mercurial/templater.py
--- 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.