summaryrefslogtreecommitdiff
path: root/gio
diff options
context:
space:
mode:
authorDaniel Boles <dboles@src.gnome.org>2018-05-20 16:15:45 +0100
committerDaniel Boles <dboles@src.gnome.org>2018-10-07 18:52:28 +0100
commitaedf65588f71779ade0c5e7e77b4f75fd67f4497 (patch)
tree08e98a5404621ca655d355607cd70dee9fe90fff /gio
parent0364a2f99e0306ddb2acf1c9bf0e9f524b4a7d32 (diff)
downloadglibmm-aedf65588f71779ade0c5e7e77b4f75fd67f4497.tar.gz
AsyncResult: Fix grammar error, <tt>ify enumerator
This was not a grammar error before C++ification! But let’s fix it anyway, and give the enumeration name some nice formatting as well.
Diffstat (limited to 'gio')
-rw-r--r--gio/src/asyncresult.hg2
1 files changed, 1 insertions, 1 deletions
diff --git a/gio/src/asyncresult.hg b/gio/src/asyncresult.hg
index 5b73a551..295a271f 100644
--- a/gio/src/asyncresult.hg
+++ b/gio/src/asyncresult.hg
@@ -92,7 +92,7 @@ using SlotAsyncReady = sigc::slot<void(Glib::RefPtr<AsyncResult>&)>;
* The async function could also take an optional Glib::Cancellable object, allowing the calling function to cancel the asynchronous operation.
*
* The callback for an asynchronous operation is called only once, and is always called, even in the case of a cancelled operation.
- * On cancellation the result is a ERROR_CANCELLED error.
+ * On cancellation, the result is an <tt>ERROR_CANCELLED</tt> error.
*
* @newin{2,16}
*/