Assert message fix.

This commit is contained in:
Ferdinand Majerech 2014-07-29 20:52:24 +02:00
parent 302995354c
commit 58e19d75ad

View file

@ -727,7 +727,7 @@ public:
/// can be used.
void insert(const dchar c, const size_t position) @system pure nothrow @nogc
{
assert(inProgress, "insertBack called without begin");
assert(inProgress, "insert called without begin");
assert(start_ + position <= end_, "Trying to insert after the end of the slice");
const point = start_ + position;