From 6644be84ae8beab718541b9e4cd0a8e646ce1c3a Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Mon, 12 Jun 2023 12:08:56 +0200 Subject: [PATCH] fix(doc): missing text --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ff5a34f..6aafbe5 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ enum HelloWorld: string { } // Like Enum::tryFrom() but for Enum names instead of values -HelloWorld::fromName("FOO"); // +HelloWorld::fromName("FOO"); // HelloWorld::FOO // .. and of course the non-throwing version HelloWorld::tryFromName("MOM"); // null ```