Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tutorials/scripting/c_sharp/diagnostics/GD0101.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GD0101: Attempted to export static member
=========================================
GD0101: The exported member is static
=====================================

==================================== ======================================
Value
Expand Down
4 changes: 2 additions & 2 deletions tutorials/scripting/c_sharp/diagnostics/GD0105.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GD0105: Attempted to export indexer property
============================================
GD0105: The exported property is an indexer
===========================================

==================================== ======================================
Value
Expand Down
4 changes: 2 additions & 2 deletions tutorials/scripting/c_sharp/diagnostics/GD0106.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GD0106: Attempted to export explicit interface property implementation
======================================================================
GD0106: The exported property is an explicit interface implementation
=====================================================================

==================================== ======================================
Value
Expand Down
4 changes: 2 additions & 2 deletions tutorials/scripting/c_sharp/diagnostics/GD0302.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GD0302: The generic type parameter must be annotated with the MustBeVariant attribute
=====================================================================================
GD0302: The generic type parameter must be annotated with the '[MustBeVariant]' attribute
=========================================================================================

==================================== ======================================
Value
Expand Down
4 changes: 2 additions & 2 deletions tutorials/scripting/c_sharp/diagnostics/GD0303.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GD0303: Symbol parent of a type argument that must be Variant compatible was not handled
========================================================================================
GD0303: The parent symbol of a type argument that must be Variant compatible was not handled
============================================================================================

==================================== ======================================
Value
Expand Down
4 changes: 2 additions & 2 deletions tutorials/scripting/c_sharp/diagnostics/GD0401.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GD0401: The class must derive from GodotObject or a derived class
=================================================================
GD0401: The class must derive from Godot.GodotObject or a derived class
=======================================================================

==================================== ======================================
Value
Expand Down
6 changes: 3 additions & 3 deletions tutorials/scripting/c_sharp/diagnostics/GD0402.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GD0402: The class must not contain generic arguments
====================================================
GD0402: The class must not be generic
=====================================

==================================== ======================================
Value
Expand All @@ -20,7 +20,7 @@ Rule description

The Godot editor assumes every :ref:`global class <doc_c_sharp_global_classes>`
is instantiable, but generic types can't be instantiated because the type
arguments are unbound.
parameters are unbound.

.. code-block:: csharp

Expand Down