diff --git a/source/dyaml/reader.d b/source/dyaml/reader.d index d64e026..92f6fcc 100644 --- a/source/dyaml/reader.d +++ b/source/dyaml/reader.d @@ -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;