From a2ec32833e0b2d1132f25489ad2f572eaba7c641 Mon Sep 17 00:00:00 2001 From: Daniel Boles Date: Mon, 7 Aug 2017 20:33:25 +0100 Subject: [PATCH] GList: Fix typo of member ->prev in documentation It said list->previous, which is not a thing that exists. --- glib/glist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glib/glist.c b/glib/glist.c index e0f9453ab..2b5692ee9 100644 --- a/glib/glist.c +++ b/glib/glist.c @@ -130,7 +130,7 @@ * * A convenience macro to get the previous element in a #GList. * Note that it is considered perfectly acceptable to access - * @list->previous directly. + * @list->prev directly. * * Returns: the previous element, or %NULL if there are no previous * elements