mirror of
https://github.com/boostorg/spirit.git
synced 2026-01-19 04:42:11 +00:00
Small documentation improvements
Bring RealPolicies valid expressions section in line with example Bring karma tutorial complex example code in line with discussion below
This commit is contained in:
committed by
Nikita Kniazev
parent
8321823575
commit
c2ae55bdb9
@@ -90,7 +90,7 @@ namespace client
|
||||
// Begin grammar
|
||||
(
|
||||
&true_ << '(' << double_ << ", " << double_ << ')'
|
||||
| omit[bool_] << double_
|
||||
| omit[bool_] << double_ << omit[double_]
|
||||
),
|
||||
// End grammar
|
||||
|
||||
|
||||
@@ -70,7 +70,7 @@ namespace client
|
||||
// Begin grammar
|
||||
(
|
||||
!double_(0.0) << '(' << double_ << ", " << double_ << ')'
|
||||
| omit[double_] << double_
|
||||
| omit[double_] << double_ << omit[double_]
|
||||
),
|
||||
// End grammar
|
||||
|
||||
|
||||
Reference in New Issue
Block a user