diff options
author | Dipal Zambare <MisoMosiSpy@gmail.com> | 2023-05-25 10:09:12 +0200 |
---|---|---|
committer | Dipal Zambare <MisoMosiSpy@gmail.com> | 2023-05-25 10:09:12 +0200 |
commit | 41ac5a406ef3d0df5e71df459fd9967a3c81492e (patch) | |
tree | 7018723c14245c769401e05ed23ef37567a8de95 /doc/classes | |
parent | a67d37f7cffe7f31c68e971280950d487ea99e2c (diff) | |
download | redot-engine-41ac5a406ef3d0df5e71df459fd9967a3c81492e.tar.gz |
Fix typo in CS notification example of the Object class
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/Object.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Object.xml b/doc/classes/Object.xml index 0a52df1e49..e74a5af5a3 100644 --- a/doc/classes/Object.xml +++ b/doc/classes/Object.xml @@ -175,7 +175,7 @@ print("Goodbye!") [/gdscript] [csharp] - public override void _Notification(long what) + public override void _Notification(int what) { if (what == NotificationPredelete) { |