diff --git a/alib2abstraction/src/abstraction/ValueHolder.hpp b/alib2abstraction/src/abstraction/ValueHolder.hpp index 7c2b5ef0275dcd52b0667e55a55bfb87eac294fa..3222505f82432d6648521d5d23d1d33cd630e266 100644 --- a/alib2abstraction/src/abstraction/ValueHolder.hpp +++ b/alib2abstraction/src/abstraction/ValueHolder.hpp @@ -116,7 +116,7 @@ class ValueHolder : public ValueHolderImpl < Type > { public: ValueHolder ( Type && value, bool temporary ) : ValueHolderImpl < Type > ( temporary ) { if ( this->isLvalueRef ( ) && this->isTemporary ( ) ) - throw std::domain_error ( "Lvalue references cannot be a temporarie." ); + throw std::domain_error ( "Lvalue references cannot be temporaries." ); this->setData ( std::forward < Type > ( value ) ); }