spelling corrections

This commit is contained in:
Jack Andersen 2015-07-13 14:39:51 -10:00
parent 11331e068e
commit 09e3d33ff2
2 changed files with 6 additions and 6 deletions

View File

@ -14,16 +14,16 @@ class IStreamReader : public IStream
public: public:
virtual ~IStreamReader() {} 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) inline void setEndian(Endian endian)
{m_endian = endian;} {m_endian = endian;}
/*! \brief Returns the current Endianness of the stream /*! \brief Returns the current Endianness of the stream
* *
* \return Endian The current Stream Endianess * \return Endian The current Stream Endianness
*/ */
inline Endian endian() const inline Endian endian() const
{return m_endian;} {return m_endian;}

View File

@ -13,16 +13,16 @@ class IStreamWriter : public IStream
{ {
public: public:
virtual ~IStreamWriter() {} 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) inline void setEndian(Endian endian)
{m_endian = endian;} {m_endian = endian;}
/*! \brief Returns the current Endianness of the stream /*! \brief Returns the current Endianness of the stream
* *
* \return Endian The current Stream Endianess * \return Endian The current Stream Endianness
*/ */
inline Endian endian() const inline Endian endian() const
{return m_endian;} {return m_endian;}