From 09e3d33ff26f3ff2abd4a9a2d1b25a3a9adc436e Mon Sep 17 00:00:00 2001 From: Jack Andersen Date: Mon, 13 Jul 2015 14:39:51 -1000 Subject: [PATCH] spelling corrections --- include/Athena/IStreamReader.hpp | 6 +++--- include/Athena/IStreamWriter.hpp | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/include/Athena/IStreamReader.hpp b/include/Athena/IStreamReader.hpp index a896d49..62a859b 100644 --- a/include/Athena/IStreamReader.hpp +++ b/include/Athena/IStreamReader.hpp @@ -14,16 +14,16 @@ class IStreamReader : public IStream public: virtual ~IStreamReader() {} - /*! \brief Sets the Endianss of the stream + /*! \brief Sets the Endianness of the stream * - * \param endian The Endianess to set \sa Endian + * \param endian The Endianness to set \sa Endian */ inline void setEndian(Endian endian) {m_endian = endian;} /*! \brief Returns the current Endianness of the stream * - * \return Endian The current Stream Endianess + * \return Endian The current Stream Endianness */ inline Endian endian() const {return m_endian;} diff --git a/include/Athena/IStreamWriter.hpp b/include/Athena/IStreamWriter.hpp index 2dff6f2..2b32760 100644 --- a/include/Athena/IStreamWriter.hpp +++ b/include/Athena/IStreamWriter.hpp @@ -13,16 +13,16 @@ class IStreamWriter : public IStream { public: virtual ~IStreamWriter() {} - /*! \brief Sets the Endianss of the stream + /*! \brief Sets the Endianness of the stream * - * \param endian The Endianess to set \sa Endian + * \param endian The Endianness to set \sa Endian */ inline void setEndian(Endian endian) {m_endian = endian;} /*! \brief Returns the current Endianness of the stream * - * \return Endian The current Stream Endianess + * \return Endian The current Stream Endianness */ inline Endian endian() const {return m_endian;}