From 1dc3267c02a90fc7303465461dea6ebcabb33f07 Mon Sep 17 00:00:00 2001 From: Maxime Pinard Date: Tue, 22 May 2018 22:29:51 +0200 Subject: [PATCH] Typo corrections (#51) --- src/inja.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/inja.hpp b/src/inja.hpp index f2c27da..dc0f80c 100644 --- a/src/inja.hpp +++ b/src/inja.hpp @@ -616,7 +616,7 @@ public: std::map included_templates; /*! - @brief create a corresponding regex for a function name with a number of arguments seperated by , + @brief create a corresponding regex for a function name with a number of arguments separated by , */ static Regex function_regex(const std::string& name, int number_arguments) { std::string pattern = name; @@ -633,7 +633,7 @@ public: } /*! - @brief dot notation to json pointer notiation + @brief dot notation to json pointer notation */ static std::string dot_to_json_pointer_notation(const std::string& dot) { std::string result = dot;