Rename String::is_rel_path to String::is_relative_path

This commit is contained in:
Wilson E. Alvarez 2021-08-29 19:43:47 -04:00
parent 838a449d64
commit d11c1afc04
No known key found for this signature in database
GPG key ID: A32174A3D2ED3F9E
23 changed files with 52 additions and 52 deletions

View file

@ -4324,7 +4324,7 @@ bool String::is_resource_file() const {
return begins_with("res://") && find("::") == -1;
}
bool String::is_rel_path() const {
bool String::is_relative_path() const {
return !is_absolute_path();
}