From a8d800572e21cdb9d0cb31f012918703cb267f5c Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 28 Sep 2014 18:06:14 +0200 Subject: fs/AllocatedPath: API documentation grammar fixes --- src/fs/AllocatedPath.hxx | 10 +++++----- 1 file 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); -- cgit v1.2.3