Fix C# boolean "Prints" comments in documentation

This commit is contained in:
Micky
2024-11-11 21:19:34 +01:00
parent 0f5f3bc954
commit 0c2296fb1b
7 changed files with 27 additions and 27 deletions

View File

@@ -122,8 +122,8 @@
print("I" in "team") # Prints false
[/gdscript]
[csharp]
GD.Print("Node".Contains("de")); // Prints true
GD.Print("team".Contains("I")); // Prints false
GD.Print("Node".Contains("de")); // Prints True
GD.Print("team".Contains("I")); // Prints False
[/csharp]
[/codeblocks]
If you need to know where [param what] is within the string, use [method find]. See also [method containsn].