diff --git a/TagScriptEngine/block/case.py b/TagScriptEngine/block/case.py index 3e82835..832391a 100644 --- a/TagScriptEngine/block/case.py +++ b/TagScriptEngine/block/case.py @@ -14,10 +14,10 @@ class UpperBlock(Block): **Examples:** :: - The text is {lower(ThIs Is A TeXt)}! + The text is {upper(ThIs Is A TeXt)}! # The text is THIS IS A TEXT! - You have entered {lower({args})}! + You have entered {upper({args})}! # You have entered HELLO WORLD! """ @@ -51,4 +51,4 @@ class LowerBlock(Block): def process(self, ctx: Context) -> str: text = str(ctx.verb.parameter).lower() - return "" if text == "none" else text \ No newline at end of file + return "" if text == "none" else text