2
0
mirror of https://github.com/boostorg/spirit.git synced 2026-01-19 04:42:11 +00:00

Qi.Examples: min_xml: Fixed inconsistency with docs

https://svn.boost.org/trac10/ticket/12860
This commit is contained in:
Nikita Kniazev
2018-11-22 15:38:08 +03:00
parent 8e74087d66
commit ce7be3a2f9
4 changed files with 4 additions and 4 deletions

View File

@@ -157,7 +157,7 @@ namespace client
end_tag =
"</"
>> string(_r1)
>> lit(_r1)
>> '>'
;

View File

@@ -152,7 +152,7 @@ namespace client
end_tag =
"</"
>> string(_r1)
>> lit(_r1)
>> '>'
;

View File

@@ -158,7 +158,7 @@ namespace client
end_tag =
"</"
> string(_r1)
> lit(_r1)
> '>'
;

View File

@@ -165,7 +165,7 @@ namespace client
, end_tag %=
"</"
>> string(_r1)
>> lit(_r1)
>> '>'
);
}