diff --git a/istack.h b/istack.h index 358b3de9..81499836 100644 --- a/istack.h +++ b/istack.h @@ -82,8 +82,7 @@ namespace etl //************************************************************************* /// Adds a value to the stack. - /// If ETL_THROW_EXCEPTIONS is defined, throws an etl::stack_full is the stack is already full, - /// otherwise does nothing if full. + /// If ETL_THROW_EXCEPTIONS is defined, throws an etl::stack_full is the stack is already full. ///\param value The value to push to the stack. //************************************************************************* void push(parameter_t value) @@ -109,8 +108,7 @@ namespace etl /// Allows a possibly more efficient 'push' by moving to the next input value /// and returning a reference to it. /// This may eliminate a copy by allowing direct construction in-place.
- /// If ETL_THROW_EXCEPTIONS is defined, throws an etl::stack_full is the stack is already full, - /// otherwise does nothing if full. + /// If ETL_THROW_EXCEPTIONS is defined, throws an etl::stack_full is the stack is already full. /// \return A reference to the position to 'push' to. //************************************************************************* reference push()