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

Fix typo: 'implementation' (#791)

Co-authored-by: Nana Sakisaka <1901813+saki7@users.noreply.github.com>
This commit is contained in:
Adem Budak
2025-05-09 10:44:51 +03:00
committed by GitHub
parent e6fbdf615b
commit b59f934da6

View File

@@ -17,7 +17,7 @@ example.
So far, to keep things simple, all of the tutorial programs are self
contained in one cpp file. In reality, you will want to separate various
logical modules of the parser into separate cpp and header files, decoupling
the interface from the implememtation.
the interface from the implementation.
There are many ways to structure an X3 parser, but the "minimal" example in
this tutorial shows the preferred way. This example basically reuses the same