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)));