From 85c4ab517aa097c369a368ceab5cf7fbe99bf790 Mon Sep 17 00:00:00 2001 From: Charles Haley <> Date: Sun, 26 Dec 2010 14:24:22 +0000 Subject: [PATCH] Correct typo in the manual --- src/calibre/manual/template_lang.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/manual/template_lang.rst b/src/calibre/manual/template_lang.rst index 6a4fef983f..b859a84340 100644 --- a/src/calibre/manual/template_lang.rst +++ b/src/calibre/manual/template_lang.rst @@ -274,7 +274,7 @@ The following program produces the same results as the original recipe, using on Name: #special_title Template: (the following with all leading spaces removed) program: - # compute the equivalent of the composit fields and store them in local variables + # compute the equivalent of the composite fields and store them in local variables stripped = re(field('series'), '^(A|The|An)\s+', ''); shortened = shorten(stripped, 4, '-' ,4); initials = re(stripped, '[^\w]*(\w?)[^\s]+(\s|$)', '\1');