summaryrefslogtreecommitdiff
path: root/src/libs/clangsupport/filepathexceptions.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/clangsupport/filepathexceptions.h')
-rw-r--r--src/libs/clangsupport/filepathexceptions.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/clangsupport/filepathexceptions.h b/src/libs/clangsupport/filepathexceptions.h
index 32142c084c..80bded0c66 100644
--- a/src/libs/clangsupport/filepathexceptions.h
+++ b/src/libs/clangsupport/filepathexceptions.h
@@ -43,7 +43,7 @@ class SourceNameIdDoesNotExists : std::exception
public:
const char *what() const noexcept override
{
- return "The source name id does not exists in the database!";
+ return "The source name id does not exist in the database!";
}
};
@@ -52,7 +52,7 @@ class DirectoryPathIdDoesNotExists : std::exception
public:
const char *what() const noexcept override
{
- return "The directory path id does not exists in the database!";
+ return "The directory path id does not exist in the database!";
}
};