From 58e19d75ad847a459c3a2df750a8489596979c98 Mon Sep 17 00:00:00 2001 From: Ferdinand Majerech Date: Tue, 29 Jul 2014 20:52:24 +0200 Subject: [PATCH] Assert message fix. --- source/dyaml/reader.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;