From 56cc646bc0460e0dfbcbd1b7e89e2672c817090d Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Wed, 18 Jan 2023 08:34:36 -0500 Subject: [PATCH] spelling: delimiter Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- includes/glm/gtx/io.hpp | 6 +++--- includes/glm/gtx/io.inl | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/includes/glm/gtx/io.hpp b/includes/glm/gtx/io.hpp index c247644..27f4787 100644 --- a/includes/glm/gtx/io.hpp +++ b/includes/glm/gtx/io.hpp @@ -129,11 +129,11 @@ namespace glm }; template - struct delimeter + struct delimiter { CTy value[3]; - GLM_FUNC_DECL explicit delimeter(CTy /* left */, CTy /* right */, CTy /* separator */ = ','); + GLM_FUNC_DECL explicit delimiter(CTy /* left */, CTy /* right */, CTy /* separator */ = ','); }; struct order @@ -157,7 +157,7 @@ namespace glm template std::basic_ostream& operator<<(std::basic_ostream&, width const&); template - std::basic_ostream& operator<<(std::basic_ostream&, delimeter const&); + std::basic_ostream& operator<<(std::basic_ostream&, delimiter const&); template std::basic_ostream& operator<<(std::basic_ostream&, order const&); }//namespace io diff --git a/includes/glm/gtx/io.inl b/includes/glm/gtx/io.inl index a3a1bb6..e592bb3 100644 --- a/includes/glm/gtx/io.inl +++ b/includes/glm/gtx/io.inl @@ -80,7 +80,7 @@ namespace io {} template - GLM_FUNC_QUALIFIER delimeter::delimeter(CTy a, CTy b, CTy c) + GLM_FUNC_QUALIFIER delimiter::delimiter(CTy a, CTy b, CTy c) : value() { value[0] = a; @@ -130,7 +130,7 @@ namespace io } template - GLM_FUNC_QUALIFIER std::basic_ostream& operator<<(std::basic_ostream& os, delimeter const& a) + GLM_FUNC_QUALIFIER std::basic_ostream& operator<<(std::basic_ostream& os, delimiter const& a) { format_punct & fmt(const_cast&>(get_facet >(os)));