diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2024-10-17 19:42:29 -0500 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2024-10-17 19:42:29 -0500 |
commit | 8249b28bea29e8ce17eac12776a60ec3f9e47176 (patch) | |
tree | 98318d7564b5f618cfb59e23cc6b918fcab88ee8 /source/fud_directory.cpp | |
parent | b32e83ece42cec5aa9dee370bcdf349d23dbc8ba (diff) |
Rename InvalidInput to ArgumentInvalid.
Diffstat (limited to 'source/fud_directory.cpp')
-rw-r--r-- | source/fud_directory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fud_directory.cpp b/source/fud_directory.cpp index 318d7e6..f46d530 100644 --- a/source/fud_directory.cpp +++ b/source/fud_directory.cpp @@ -90,7 +90,7 @@ Result<Directory, FudStatus> Directory::make(const String& name) using RetType = Result<Directory, FudStatus>; Directory directory{}; if (!name.valid()) { - return RetType::error(FudStatus::InvalidInput); + return RetType::error(FudStatus::ArgumentInvalid); } if (!name.utf8Valid()) { |