aboutsummaryrefslogtreecommitdiffstats
path: root/src/fs
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs')
-rw-r--r--src/fs/AllocatedPath.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/fs/AllocatedPath.hxx b/src/fs/AllocatedPath.hxx
index 4fb217547..42594b2f6 100644
--- a/src/fs/AllocatedPath.hxx
+++ b/src/fs/AllocatedPath.hxx
@@ -61,12 +61,12 @@ class AllocatedPath {
}
public:
/**
- * Copy a #AllocatedPath object.
+ * Copy an #AllocatedPath object.
*/
AllocatedPath(const AllocatedPath &) = default;
/**
- * Move a #AllocatedPath object.
+ * Move an #AllocatedPath object.
*/
AllocatedPath(AllocatedPath &&other):value(std::move(other.value)) {}
@@ -147,7 +147,7 @@ public:
}
/**
- * Convert a UTF-8 C string to a #AllocatedPath instance.
+ * Convert a UTF-8 C string to an #AllocatedPath instance.
* Returns return a "nulled" instance on error.
*/
gcc_pure gcc_nonnull_all
@@ -157,12 +157,12 @@ public:
static AllocatedPath FromUTF8(const char *path_utf8, Error &error);
/**
- * Copy a #AllocatedPath object.
+ * Copy an #AllocatedPath object.
*/
AllocatedPath &operator=(const AllocatedPath &) = default;
/**
- * Move a #AllocatedPath object.
+ * Move an #AllocatedPath object.
*/
AllocatedPath &operator=(AllocatedPath &&other) {
value = std::move(other.value);