Removing trailing whitespace

With `sed -i $(rg -l '[[:blank:]]*$' -g'!classes') -e 's/[[:blank:]]*$//g'`
This commit is contained in:
Rémi Verschelde
2018-11-20 11:08:14 +01:00
parent a0e32ac017
commit 4ef06a4135
69 changed files with 739 additions and 740 deletions

View File

@@ -59,7 +59,7 @@ exists. Example
{
DrawSelected()
}
else
else
{
DrawNormal();
}
@@ -83,7 +83,7 @@ for example:
.. tabs::
.. code-tab:: gdscript GDScript
func get_minimum_size():
func get_minimum_size():
return Vector2(30, 30)
.. code-tab:: csharp
@@ -207,7 +207,7 @@ exists, but can be checked with the _notification callback:
{
case NotificationMouseEnter:
// mouse entered the area of this control
break;
break;
case NotificationMouseExit:
// mouse exited the area of this control

View File

@@ -80,7 +80,7 @@ An example usage:
var t = new Theme();
t.SetColor("fontColor", "Label", new Color(1.0f, 1.0f, 1.0f));
var l = new Label();
l.SetTheme(t);