From b795267e758a3ba4cd0967d83ec113b57c36491e Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Sun, 4 Mar 2018 10:43:24 +0100 Subject: [PATCH] Rename ErrorCode.text() to toString() --- source/tanya/os/error.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/tanya/os/error.d b/source/tanya/os/error.d index aac553f..bc4a008 100644 --- a/source/tanya/os/error.d +++ b/source/tanya/os/error.d @@ -388,7 +388,7 @@ struct ErrorCode * * Returns: String describing the error number. */ - string text() const @nogc nothrow pure @safe + string toString() const @nogc nothrow pure @safe { foreach (e; __traits(allMembers, ErrorNo)) { @@ -404,13 +404,13 @@ struct ErrorCode @nogc nothrow pure @safe unittest { ErrorCode ec = ErrorCode.fault; - assert(ec.text == "An invalid pointer address detected"); + assert(ec.toString() == "An invalid pointer address detected"); } @nogc nothrow pure @safe unittest { ErrorCode ec = cast(ErrorCode.ErrorNo) -1; - assert(ec.text is null); + assert(ec.toString() is null); } private ErrorNo value_ = ErrorNo.success;