aboutsummaryrefslogtreecommitdiffstats
path: root/src/fs
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-09-28 18:06:14 +0200
committerMax Kellermann <max@duempel.org>2014-09-28 18:06:18 +0200
commita8d800572e21cdb9d0cb31f012918703cb267f5c (patch)
treed075e94dde5e75ba028b31c4a617710427cd3efa /src/fs
parent5525ea45a4e1765db110a8ca5abbc3ca5e66a89a (diff)
downloadmpd-a8d800572e21cdb9d0cb31f012918703cb267f5c.tar.gz
mpd-a8d800572e21cdb9d0cb31f012918703cb267f5c.tar.xz
mpd-a8d800572e21cdb9d0cb31f012918703cb267f5c.zip
fs/AllocatedPath: API documentation grammar fixes
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);