# HG changeset patch # User Carnë Draug # Date 1405638202 -3600 # Node ID 29fc1736a6be237854201d5ea08e6d4ac923680a # Parent b0960d4afe5f2675e696bfdaeaf8580291d6e65a scripts/mkdoc.pl: remove '@(end )?example' leading spaces from DOCSTRING. diff -r b0960d4afe5f -r 29fc1736a6be scripts/mkdoc.pl --- a/scripts/mkdoc.pl Thu Jul 17 21:53:31 2014 +0100 +++ b/scripts/mkdoc.pl Fri Jul 18 00:03:22 2014 +0100 @@ -68,7 +68,7 @@ { my $in_example = (m/\s*\@example\b/ .. m/\s*\@end\s+example\b/); s/^\s+\@/\@/ unless $in_example; - s/^\s+(\@(?:end)\s+group)/$1/; + s/^\s+(\@(?:end)\s+(group|example))/$1/; print $_; } }