diff options
author | Andrés Botero <0xafbf@gmail.com> | 2022-12-12 09:51:33 -0600 |
---|---|---|
committer | Andrés Botero <0xafbf@gmail.com> | 2022-12-12 13:12:25 -0500 |
commit | 3afe5d0c25391b7dc828663b1da1013c15415f2e (patch) | |
tree | 448b08f0dbfc0d90c3dc0d8860332b3f21e4a111 /doc/classes/StringName.xml | |
parent | ba4bd7f00971a94c20d90e7d2c665d5eb0ae1b90 (diff) |
Fix docstring for String.get_base_dir
Diffstat (limited to 'doc/classes/StringName.xml')
-rw-r--r-- | doc/classes/StringName.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/StringName.xml b/doc/classes/StringName.xml index e3cb6517f3..44d78a46fb 100644 --- a/doc/classes/StringName.xml +++ b/doc/classes/StringName.xml @@ -220,7 +220,7 @@ <description> If the string is a valid file path, returns the base directory name. [codeblock] - var dir_path = "/path/to/file.txt".get_basename() # dir_path is "/path/to" + var dir_path = "/path/to/file.txt".get_base_dir() # dir_path is "/path/to" [/codeblock] </description> </method> |