We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88f37a0 commit 65fe547Copy full SHA for 65fe547
1 file changed
Code/ArgumentSystem/Arguments/TextArgument.cs
@@ -11,7 +11,7 @@ namespace SER.Code.ArgumentSystem.Arguments;
11
public class TextArgument(string name, bool needsQuotes = true, bool allowsSpaces = true) : Argument(name)
12
{
13
public override string InputDescription => "Any text e.g. \"Hello, World!\""
14
- + (needsQuotes ? " (it can be without the quotes)" : "")
+ + (!needsQuotes ? " (it can be without the quotes)" : "")
15
+ (!allowsSpaces ? " but it CANNOT contain spaces!" : "");
16
17
[UsedImplicitly]
0 commit comments