# HG changeset patch # User Yuya Nishihara # Date 1449389797 -32400 # Node ID 6ca28c47228ae189d09a15e4628de56e707fb20b # Parent f43988e5954c7a305dd928f0d3950adb784637f3 commit: fix rest syntax of examples This fixes the formatting of help/commit page and silence test-gendoc.t. diff -r f43988e5954c -r 6ca28c47228a mercurial/commands.py --- a/mercurial/commands.py Sat Dec 05 20:24:39 2015 -0800 +++ b/mercurial/commands.py Sun Dec 06 17:16:37 2015 +0900 @@ -1590,15 +1590,15 @@ Examples: - - commit all files ending in .py: + - commit all files ending in .py:: hg commit --include "set:**.py" - - commit all non-binary files: + - commit all non-binary files:: hg commit --exclude "set:binary()" - - amend the current commit and set the date to now: + - amend the current commit and set the date to now:: hg commit --amend --date now """