From 7a1f20eaf127ac11e5a230b5748129a384411dbe Mon Sep 17 00:00:00 2001 From: aixxe Date: Sun, 22 Oct 2017 14:44:16 +0100 Subject: [PATCH] Fix syntax error in tutorial/variables example code. Signed-off-by: aixxe --- docs/source/tutorial/variables.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/tutorial/variables.rst b/docs/source/tutorial/variables.rst index 8a05f02c..bd82253b 100644 --- a/docs/source/tutorial/variables.rst +++ b/docs/source/tutorial/variables.rst @@ -53,7 +53,7 @@ You can interact with the variables like this: // can also get it using the "get" member function // auto replaces the unqualified type name - auto resolution = config.get( "resolution ); + auto resolution = config.get( "resolution" ); // table and state can have multiple things pulled out of it too std::pair xyresolution = resolution.get( "x", "y" );