diff options
author | Raul Santos <raulsntos@gmail.com> | 2022-09-19 18:25:29 +0200 |
---|---|---|
committer | Raul Santos <raulsntos@gmail.com> | 2022-09-19 18:25:29 +0200 |
commit | 5be5f167a1290993c1c7fdbaab1c44b4434b48df (patch) | |
tree | f97cb3c19539c95b75e33063d89aec49cce2b7dc /modules/mono/glue/GodotSharp | |
parent | 6f5704d86f95171ba8b6b2ac9f56e284c4d35d7a (diff) |
C#: Rename `PlusFile` to `PathJoin`
Diffstat (limited to 'modules/mono/glue/GodotSharp')
-rw-r--r-- | modules/mono/glue/GodotSharp/GodotSharp/Core/StringExtensions.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/glue/GodotSharp/GodotSharp/Core/StringExtensions.cs b/modules/mono/glue/GodotSharp/GodotSharp/Core/StringExtensions.cs index 44f951e314..d77baab24b 100644 --- a/modules/mono/glue/GodotSharp/GodotSharp/Core/StringExtensions.cs +++ b/modules/mono/glue/GodotSharp/GodotSharp/Core/StringExtensions.cs @@ -1245,12 +1245,12 @@ namespace Godot /// <summary> /// If the string is a path, this concatenates <paramref name="file"/> /// at the end of the string as a subpath. - /// E.g. <c>"this/is".PlusFile("path") == "this/is/path"</c>. + /// E.g. <c>"this/is".PathJoin("path") == "this/is/path"</c>. /// </summary> /// <param name="instance">The path that will be concatenated.</param> /// <param name="file">File name to concatenate with the path.</param> /// <returns>The concatenated path with the given file name.</returns> - public static string PlusFile(this string instance, string file) + public static string PathJoin(this string instance, string file) { if (instance.Length > 0 && instance[instance.Length - 1] == '/') return instance + file; |