changeset 25786:35fa7c77c754

help: rewrite template examples to not use shell escaping Though they work fine even on cmd.exe, these examples could lead to misguided understanding about the template syntax.
author Yuya Nishihara <yuya@tcha.org>
date Sun, 12 Jul 2015 17:59:25 +0900
parents f976b7dc5e7b
children d9133e89d39d
files mercurial/help/templates.txt
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/help/templates.txt	Sat Jun 20 18:24:11 2015 +0900
+++ b/mercurial/help/templates.txt	Sun Jul 12 17:59:25 2015 +0900
@@ -96,7 +96,7 @@
 
 - Mark the active bookmark with '*'::
 
-   $ hg log --template "{bookmarks % '{bookmark}{ifeq(bookmark, active, \"*\")} '}\n"
+   $ hg log --template "{bookmarks % '{bookmark}{ifeq(bookmark, active, '*')} '}\n"
 
 - Mark the working copy parent with '@'::
 
@@ -104,7 +104,7 @@
 
 - Show only commit descriptions that start with "template"::
 
-   $ hg log --template "{startswith(\"template\", firstline(desc))}\n"
+   $ hg log --template "{startswith('template', firstline(desc))}\n"
 
 - Print the first word of each line of a commit message::