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
///
/// If the string is a path, this concatenates
/// at the end of the string as a subpath.
- /// E.g. "this/is".PlusFile("path") == "this/is/path".
+ /// E.g. "this/is".PathJoin("path") == "this/is/path".
///
/// The path that will be concatenated.
/// File name to concatenate with the path.
/// The concatenated path with the given file name.
- 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;