summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid King <amigadave@amigadave.com>2014-11-13 17:49:31 +0000
committerDavid King <amigadave@amigadave.com>2014-11-13 17:49:31 +0000
commit61cecd5a68743542baf685b47e8a4a5f4a98d205 (patch)
tree7b00c927a76da9d3f3d31012811e328ac2f09f7f
parent1edd463137067ccb7533f3a1e072dc516bb32d86 (diff)
downloadglib-61cecd5a68743542baf685b47e8a4a5f4a98d205.tar.gz
docs: Add missing opening parenthesis
https://mail.gnome.org/archives/gnome-web-list/2014-November/msg00003.html
-rw-r--r--glib/gmem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/glib/gmem.c b/glib/gmem.c
index de08b335c..6a108ee9e 100644
--- a/glib/gmem.c
+++ b/glib/gmem.c
@@ -70,7 +70,7 @@ static GMemVTable glib_mem_vtable = {
* This also means that there is no need to check if the call succeeded.
*
* It's important to match g_malloc() (and wrappers such as g_new()) with
- * g_free(), g_slice_alloc() and wrappers such as g_slice_new()) with
+ * g_free(), g_slice_alloc() (and wrappers such as g_slice_new()) with
* g_slice_free(), plain malloc() with free(), and (if you're using C++)
* new with delete and new[] with delete[]. Otherwise bad things can happen,
* since these allocators may use different memory pools (and new/delete call