]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/spirit/classic/example/intermediate/lazy_parser.cpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / libs / spirit / classic / example / intermediate / lazy_parser.cpp
index 6035fd80637672ba558975653177c6008d82effe..62d4aade015b3c8bc63f8efcc26e47d6746da9ef 100644 (file)
@@ -24,7 +24,7 @@
 //  the numbers in the "bin" block are wrote in the binary system. We want
 //  parser to return the overall sum.
 //
-//  To achive this when base ("bin" or "dec") is parsed, in semantic action
+//  To achieve this when base ("bin" or "dec") is parsed, in semantic action
 //  we store a pointer to the appropriate numeric parser in the closure
 //  variable block.int_rule. Than, when we need to parse a number we use lazy_p
 //  parser to invoke the parser stored in the block.int_rule pointer.