summaryrefslogtreecommitdiff
path: root/Kernel/KLexicalPath.h
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/KLexicalPath.h')
-rw-r--r--Kernel/KLexicalPath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/KLexicalPath.h b/Kernel/KLexicalPath.h
index b398e7ca81..a8564fd81c 100644
--- a/Kernel/KLexicalPath.h
+++ b/Kernel/KLexicalPath.h
@@ -17,6 +17,6 @@ StringView basename(StringView const&);
StringView dirname(StringView const&);
Vector<StringView> parts(StringView const&);
-OwnPtr<KString> try_join(StringView const&, StringView const&);
+KResultOr<NonnullOwnPtr<KString>> try_join(StringView const&, StringView const&);
}