Skip to content

Commit d370c33

Browse files
committed
content: correct typos
1 parent 57ee451 commit d370c33

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

course/lesson-27-value-types/lesson.tres

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ script = ExtResource( 2 )
106106
content_id = "res://course/lesson-27-value-types/content-JTESv5tT.tres"
107107
title = ""
108108
type = 0
109-
text = "It tells you you can't add values of type [code]String[/code] and [code]int[/code]: they're incompatible.
109+
text = "It tells you can't add values of type [code]String[/code] and [code]int[/code]: they're incompatible.
110110
111111
In that case, you need to convert the [code]health[/code] number into a [code]String[/code]."
112112
visual_element_path = ""

script_checking/error_database.csv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ It has two possible causes:
5252
1. You used the class name in the class itself.
5353
2. Your code refers to another class that refers to this class, causing an endless reference cycle.
5454
55-
Either way, due to how GDScript works in Godot 3, unfortunately,you cannot do this. Godot 4 should solve this problem, but you need to work around it in the meantime.","Erase the type hint in the error line, and the problem should disappear.
55+
Either way, due to how GDScript works in Godot 3, unfortunately,you cannot do this. Godot 4 should solve this problem, but you need to work around it in the meantime.","Erase the type hint in the error line, and the problem should disappear.
5656
5757
At GDQuest, when we face this error, we remove the type hints on lines causing cyclic references. It solves the problem in the vast majority of cases."
5858
INVALID_INDENTATION,"The indentation of your code (the number of tab characters at the start of the line) is incorrect.
@@ -74,7 +74,7 @@ If it says ""unterminated,"" you are missing some character at the end of an exp
7474
UNEXPECTED_CHARACTER_IN_KEYWORD,"This error tells you that you are missing a parenthesis (or sometimes a comma or a path).
7575
7676
Three keywords in GDScript work like function calls and require parentheses: [code]yield()[/code], [code]preload()[/code], and [code]assert()[/code].","To address the error, you want to add the missing opening parenthesis, the closing parenthesis, or the comma."
77-
UNEXPECTED_CHARACTER_IN_EXPORT_HINT,"This error tells you you are missing some parenthesis, a comma, or some value in your export hint.",You need to read the error message and add the missing character or value it requests.
77+
UNEXPECTED_CHARACTER_IN_EXPORT_HINT,"This error tells you are missing some parenthesis, a comma, or some value in your export hint.",You need to read the error message and add the missing character or value it requests.
7878
MISPLACED_IDENTIFIER,"This error happens in several cases:
7979
8080
1. You wrote an identifier (variable or function name) in the wrong place.

0 commit comments

Comments
 (0)