From 5ad0edd26de7777d99f953396eeb405df2c01611 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Fri, 28 Aug 2009 09:26:27 +0000 Subject: [PATCH] clarify comment [r26440] --- include/libfirm/adt/pdeq.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/include/libfirm/adt/pdeq.h b/include/libfirm/adt/pdeq.h index d19129153..3514d0a70 100644 --- a/include/libfirm/adt/pdeq.h +++ b/include/libfirm/adt/pdeq.h @@ -149,23 +149,21 @@ pdeq *pdeq_putl(pdeq *dq, const void *x); pdeq *pdeq_putr(pdeq *dq, const void *x); /** - * Retrieve a pointer from the left site of a double ended pointer list. + * Retrieve (and remove) a pointer from the left site of a double ended pointer + * list. * * @param dq The list - * * @return The pointer element. - * * @remark This function will fail if the list is empty. */ void *pdeq_getl(pdeq *dq); /** - * Retrieve a pointer from the right site of a double ended pointer list. + * Retrieve (and remove) a pointer from the right site of a double ended pointer + * list. * * @param dq The list - * * @return The pointer element. - * * @remark This function will fail if the list is empty. */ void *pdeq_getr(pdeq *dq); -- 2.20.1