Skip to content

Commit 9279a62

Browse files
Meorgetetrapod00
andcommitted
Update links to Project Settings to use correct casing
Co-authored-by: tetrapod <[email protected]>
1 parent b2709e3 commit 9279a62

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+44
-44
lines changed

tutorials/scripting/gdscript/warnings/assert_always_false.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
Assert statement will raise an error because the expression is always false.
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/assert_always_false<class_ProjectSettings_property_debug/gdscript/warnings/assert_always_false>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Assert Always False<class_ProjectSettings_property_debug/gdscript/warnings/assert_always_false>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/assert_always_true.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
Assert statement is redundant because the expression is always true.
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/assert_always_true<class_ProjectSettings_property_debug/gdscript/warnings/assert_always_true>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Assert Always True<class_ProjectSettings_property_debug/gdscript/warnings/assert_always_true>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/confusable_capture_reassignment.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
Reassigning lambda capture does not modify the outer local variable "my_var".
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/confusable_capture_reassignment<class_ProjectSettings_property_debug/gdscript/warnings/confusable_capture_reassignment>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Confusable Capture Reassignment<class_ProjectSettings_property_debug/gdscript/warnings/confusable_capture_reassignment>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/confusable_identifier.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
The identifier "my_vаr" has misleading characters and might be confused with something else.
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/confusable_identifier<class_ProjectSettings_property_debug/gdscript/warnings/confusable_identifier>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Confusable Identifier<class_ProjectSettings_property_debug/gdscript/warnings/confusable_identifier>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/confusable_local_declaration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
The variable "my_param" is declared below in the parent block.
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/confusable_local_declaration<class_ProjectSettings_property_debug/gdscript/warnings/confusable_local_declaration>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Confusable Local Declaration<class_ProjectSettings_property_debug/gdscript/warnings/confusable_local_declaration>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/confusable_local_usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
The identifier "my_var" will be shadowed below in the block.
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/confusable_local_usage<class_ProjectSettings_property_debug/gdscript/warnings/confusable_local_usage>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Confusable Local Usage<class_ProjectSettings_property_debug/gdscript/warnings/confusable_local_usage>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/deprecated_keyword.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
The "..." keyword is deprecated and will be removed in a future release, please replace its uses by "...".
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/deprecated_keyword<class_ProjectSettings_property_debug/gdscript/warnings/deprecated_keyword>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Deprecated Keyword<class_ProjectSettings_property_debug/gdscript/warnings/deprecated_keyword>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/empty_file.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
Empty script file.
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/empty_file<class_ProjectSettings_property_debug/gdscript/warnings/empty_file>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Empty File<class_ProjectSettings_property_debug/gdscript/warnings/empty_file>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/enum_variable_without_default.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
The variable "my_var" has an enum type and does not set an explicit default value. The default will be set to "0".
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/enum_variable_without_default<class_ProjectSettings_property_debug/gdscript/warnings/enum_variable_without_default>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Enum Variable Without Default<class_ProjectSettings_property_debug/gdscript/warnings/enum_variable_without_default>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/get_node_default_without_onready.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Depending on how you attempt to access the scene tree, the warning message will
1414
The default value is using "get_node()" which won't return nodes in the scene tree before "_ready()" is called. Use the "@onready" annotation to solve this.
1515
1616
The default warning level for this warning is **Error**.
17-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/get_node_default_without_onready<class_ProjectSettings_property_debug/gdscript/warnings/get_node_default_without_onready>`.
17+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Get Node Default Without Onready<class_ProjectSettings_property_debug/gdscript/warnings/get_node_default_without_onready>`.
1818

1919
When this warning occurs
2020
------------------------

tutorials/scripting/gdscript/warnings/incompatible_ternary.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
Values of the ternary operator are not mutually compatible.
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/incompatible_ternary<class_ProjectSettings_property_debug/gdscript/warnings/incompatible_ternary>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Incompatible Ternary<class_ProjectSettings_property_debug/gdscript/warnings/incompatible_ternary>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/inference_on_variant.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
The variable type is being inferred from a Variant value, so it will be typed as Variant.
99
1010
The default warning level for this warning is **Error**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/inference_on_variant<class_ProjectSettings_property_debug/gdscript/warnings/inference_on_variant>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Inference on Variant<class_ProjectSettings_property_debug/gdscript/warnings/inference_on_variant>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/inferred_declaration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
"for" iterator variable "i" has an implicitly inferred static type.
99
1010
The default warning level for this warning is **Ignore**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/inferred_declaration<class_ProjectSettings_property_debug/gdscript/warnings/inferred_declaration>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Inferred Declaration<class_ProjectSettings_property_debug/gdscript/warnings/inferred_declaration>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/int_as_enum_without_cast.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
Integer used when an enum value is expected. If this is intended cast the integer to the enum type.
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/int_as_enum_without_cast<class_ProjectSettings_property_debug/gdscript/warnings/int_as_enum_without_cast>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Int as Enum Without Cast<class_ProjectSettings_property_debug/gdscript/warnings/int_as_enum_without_cast>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/int_as_enum_without_match.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
Cannot cast 3 as Enum "MyClass.MyEnum": no enum member has matching value.
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/int_as_enum_without_match<class_ProjectSettings_property_debug/gdscript/warnings/int_as_enum_without_match>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Int as Enum Without Match<class_ProjectSettings_property_debug/gdscript/warnings/int_as_enum_without_match>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/integer_division.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
Integer division, decimal part will be discarded.
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/integer_division<class_ProjectSettings_property_debug/gdscript/warnings/integer_division>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Integer Division<class_ProjectSettings_property_debug/gdscript/warnings/integer_division>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/missing_tool.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
The base class script has the "@tool" annotation, but this script does not have it.
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/missing_tool<class_ProjectSettings_property_debug/gdscript/warnings/missing_tool>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Missing Tool<class_ProjectSettings_property_debug/gdscript/warnings/missing_tool>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/narrowing_conversion.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
Narrowing conversion (float is converted to int and loses precision).
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/narrowing_conversion<class_ProjectSettings_property_debug/gdscript/warnings/narrowing_conversion>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Narrowing Conversion<class_ProjectSettings_property_debug/gdscript/warnings/narrowing_conversion>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/native_method_override.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
The method "get_class()" overrides a method from native class "Object". This won't be called by the engine and may not work as expected.
99
1010
The default warning level for this warning is **Error**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/native_method_override<class_ProjectSettings_property_debug/gdscript/warnings/native_method_override>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Native Method Override<class_ProjectSettings_property_debug/gdscript/warnings/native_method_override>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/onready_with_export.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
"@onready" will set the default value after "@export" takes effect and will override it.
99
1010
The default warning level for this warning is **Error**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/onready_with_export<class_ProjectSettings_property_debug/gdscript/warnings/onready_with_export>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Onready With Export<class_ProjectSettings_property_debug/gdscript/warnings/onready_with_export>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/redundant_await.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
"await" keyword not needed in this case, because the expression isn't a coroutine nor a signal.
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/redundant_await<class_ProjectSettings_property_debug/gdscript/warnings/redundant_await>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Redundant Await<class_ProjectSettings_property_debug/gdscript/warnings/redundant_await>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/redundant_static_unload.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
The "@static_unload" annotation is redundant because the file does not have a class with static variables.
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/redundant_static_unload<class_ProjectSettings_property_debug/gdscript/warnings/redundant_static_unload>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Redundant Static Unload<class_ProjectSettings_property_debug/gdscript/warnings/redundant_static_unload>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/return_value_discarded.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
The function "get_number()" returns a value that will be discarded if not used.
99
1010
The default warning level for this warning is **Ignore**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/return_value_discarded<class_ProjectSettings_property_debug/gdscript/warnings/return_value_discarded>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Return Value Discarded<class_ProjectSettings_property_debug/gdscript/warnings/return_value_discarded>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/shadowed_global_identifier.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
The variable "char" has the same name as a built-in function.
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/shadowed_global_identifier<class_ProjectSettings_property_debug/gdscript/warnings/shadowed_global_identifier>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Shadowed Global Identifier<class_ProjectSettings_property_debug/gdscript/warnings/shadowed_global_identifier>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/shadowed_variable.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
The local variable "level" is shadowing an already-declared variable at line 3 in the current class.
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/shadowed_variable<class_ProjectSettings_property_debug/gdscript/warnings/shadowed_variable>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Shadowed Variable<class_ProjectSettings_property_debug/gdscript/warnings/shadowed_variable>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/shadowed_variable_base_class.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
The local variable "name" is shadowing an already-declared property in the base class "Node".
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/shadowed_variable_base_class<class_ProjectSettings_property_debug/gdscript/warnings/shadowed_variable_base_class>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Shadowed Variable Base Class<class_ProjectSettings_property_debug/gdscript/warnings/shadowed_variable_base_class>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/standalone_expression.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
Standalone expression (the line may have no effect).
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/standalone_expression<class_ProjectSettings_property_debug/gdscript/warnings/standalone_expression>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Standalone Expression<class_ProjectSettings_property_debug/gdscript/warnings/standalone_expression>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/standalone_ternary.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
Standalone ternary operator: the return value is being discarded.
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/standalone_ternary<class_ProjectSettings_property_debug/gdscript/warnings/standalone_ternary>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Standalone Ternary<class_ProjectSettings_property_debug/gdscript/warnings/standalone_ternary>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/static_called_on_instance.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
The function "do_static_thing()" is a static function but was called from an instance. Instead, it should be directly called from the type: "MyClass.do_static_thing()".
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/static_called_on_instance<class_ProjectSettings_property_debug/gdscript/warnings/static_called_on_instance>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Static Called on Instance<class_ProjectSettings_property_debug/gdscript/warnings/static_called_on_instance>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/unassigned_variable.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
The variable "my_var" is used before being assigned a value.
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/unassigned_variable<class_ProjectSettings_property_debug/gdscript/warnings/unassigned_variable>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Unassigned Variable<class_ProjectSettings_property_debug/gdscript/warnings/unassigned_variable>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/unassigned_variable_op_assign.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
The variable "my_counter" is modified with the compound-assignment operator "+=" but was not previously initialized.
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/unassigned_variable_op_assign<class_ProjectSettings_property_debug/gdscript/warnings/unassigned_variable_op_assign>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Unassigned Variable Op Assign<class_ProjectSettings_property_debug/gdscript/warnings/unassigned_variable_op_assign>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/unreachable_code.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
Unreachable code (statement after return) in function "_ready()".
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/unreachable_code<class_ProjectSettings_property_debug/gdscript/warnings/unreachable_code>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Unreachable Code<class_ProjectSettings_property_debug/gdscript/warnings/unreachable_code>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/unreachable_pattern.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
Unreachable pattern (pattern after wildcard or bind).
99
1010
The default warning level for this warning is **Warn**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/unreachable_pattern<class_ProjectSettings_property_debug/gdscript/warnings/unreachable_pattern>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Unreachable Pattern<class_ProjectSettings_property_debug/gdscript/warnings/unreachable_pattern>`.
1212

1313
When this warning occurs
1414
------------------------

tutorials/scripting/gdscript/warnings/unsafe_call_argument.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The warning message is:
88
The argument 1 of the function "set_health()" requires the subtype "int" but the supertype "Variant" was provided.
99
1010
The default warning level for this warning is **Ignore**.
11-
To modify it, see :ref:`ProjectSettings.debug/gdscript/warnings/unsafe_call_argument<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_call_argument>`.
11+
To modify it, set :ref:`Project Settings > Debug > GDScript > Warnings > Unsafe Call Argument<class_ProjectSettings_property_debug/gdscript/warnings/unsafe_call_argument>`.
1212

1313
When this warning occurs
1414
------------------------

0 commit comments

Comments
 (0)