From 5a88366efc1cde74d77bb3296cd7ed5df0464a31 Mon Sep 17 00:00:00 2001 From: Tevin Date: Sat, 8 Sep 2018 12:36:39 +0800 Subject: [PATCH] Refine comments --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1542a83..c13a511 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ cond.IsSet() // Returns true cond.UnSet() // Set to false cond.SetTo(true) // Set to whatever you want cond.SetToIf(false, true) // Set to true if it is false, returns false(not set) -cond.Flip() // Flip the boolean value, true to false, or false to ture +cond.Flip() // Flip toggles the value(replaces with its opposite value) // embedding