Skip to content

Commit f468d52

Browse files
committed
Fix stale comment in doc example.
1 parent b5d4339 commit f468d52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/tutorial.qbk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ so this directive is only available in C++20 and later.
351351

352352
namespace bp = boost::parser;
353353
auto int_parser = bp::int_ % ','; // ATTR(int_parser) is std::vector<int>
354-
auto sv_parser = bp::string_view[int_parser]; // ATTR(subrange_parser) is a string_view
354+
auto sv_parser = bp::string_view[int_parser]; // ATTR(sv_parser) is a string_view
355355

356356
auto const str = std::string("1, 2, 3, 4, a, b, c");
357357
auto first = str.begin();

0 commit comments

Comments
 (0)