From 2717f67e8bdeb00415157b877d1b282bc4fa17c9 Mon Sep 17 00:00:00 2001 From: Evgen Bodunov Date: Wed, 16 Sep 2015 12:04:04 +0300 Subject: [PATCH] typo fixed --- v1_0_cpp_overview.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v1_0_cpp_overview.md b/v1_0_cpp_overview.md index 1b72146..29b3c47 100644 --- a/v1_0_cpp_overview.md +++ b/v1_0_cpp_overview.md @@ -30,13 +30,13 @@ g++ -std=c++11 -Ipath_to_msgpack-c/include your_program.cpp #### Configure ``` -cd msgpack-c ./bootstrap ./congigure +cd msgpack-c ./bootstrap ./configure ``` If you want to test C++11 support, execute ``` -./congigure CXXFLAGS="-std=c++11" +./configure CXXFLAGS="-std=c++11" ```