From 0bc50975794f308e07f1bbcaca68df035d5b142f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20M=C3=BCller?= Date: Mon, 10 Apr 2017 21:47:48 +0200 Subject: [PATCH] Fix typo in to_string --- src/cpp_entity_kind.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpp_entity_kind.cpp b/src/cpp_entity_kind.cpp index 11553cf..8af47e9 100644 --- a/src/cpp_entity_kind.cpp +++ b/src/cpp_entity_kind.cpp @@ -86,7 +86,7 @@ const char* cppast::to_string(cpp_entity_kind kind) noexcept case cpp_entity_kind::class_template_t: return "class template"; case cpp_entity_kind::class_template_specialization_t: - return "class tempalte specialization"; + return "class template specialization"; case cpp_entity_kind::unexposed_t: return "unexposed entity";