From 2c15dbe6b2f6b6ba1a8d95950c5483703650a96a Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Thu, 11 Jun 2015 19:04:30 +0100 Subject: [PATCH] Fix regions highlighter docstring --- src/highlighters.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/highlighters.cc b/src/highlighters.cc index a7e5b47a..f1c871d2 100644 --- a/src/highlighters.cc +++ b/src/highlighters.cc @@ -1379,11 +1379,11 @@ void register_highlighters() registry.append({ "regions", { RegionsHighlighter::create, - "Parameters: [-default ] { }..." + "Parameters: [-default ] { }..." "Split the highlighting into regions defined by the , and regex\n" - "The region starts at match, end at match that does not\n" + "The region starts at match, end at match that does not\n" "close a match. In between region is the .\n" - "Highlighting a region is done by adding highlighters into the different subgroups." } }); + "Highlighting a region is done by adding highlighters into the different subgroups." } }); } }