From efdd14cdb98abbbb742d5fefceb26b29f447ddc5 Mon Sep 17 00:00:00 2001 From: Hu Zheng Date: Thu, 14 Jul 2016 16:50:59 +0800 Subject: [PATCH] Fix code in Getting-Started.md. --- doc/Getting-Started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Getting-Started.md b/doc/Getting-Started.md index 241d4147e..db16f700a 100644 --- a/doc/Getting-Started.md +++ b/doc/Getting-Started.md @@ -57,7 +57,7 @@ namespace hello template<> struct action< name > { - static void apply( const pegtl::input & in, std::string & name ) + static void apply( const pegtl::action_input & in, std::string & name ) { name = in.string(); }