Opened 13 years ago
Closed 13 years ago
#3749 closed Bugs (fixed)
Minor documentation feedbacks
Reported by: | Guillaume Labourey | Owned by: | Joel de Guzman |
---|---|---|---|
Milestone: | Boost 1.42.0 | Component: | spirit |
Version: | Boost 1.41.0 | Severity: | Cosmetic |
Keywords: | Cc: |
Description
Hello,
On the documentation, I think there is a little "copy-paste" mistake in a Qi sample in attributes.qbk line 219:
qi::parse(begin, end, '(' >> qi::double_ >> ", " >> qi::double_ << ')', d1, d2);
It should be replaced by:
qi::parse(begin, end, '(' >> qi::double_ >> ", " >> qi::double_ >> ')', d1, d2);
Best regards, Guillaume
Note:
See TracTickets
for help on using tickets.
(In [59933]) Spirit: fixed #3749 (Minor documentation feedbacks)