From a2a7f35205a31fbe45bbbc4abe9b56fa1521c146 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Thu, 22 Jun 2023 06:53:14 +0200 Subject: [PATCH] context: Make it clear that the returned array of device is owned by the lib The "new" word could be not correct here, given we return the one owned by the context. --- libfprint/fp-context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libfprint/fp-context.c b/libfprint/fp-context.c index 1561d700..40bc8aa3 100644 --- a/libfprint/fp-context.c +++ b/libfprint/fp-context.c @@ -543,7 +543,7 @@ fp_context_enumerate (FpContext *context) * * Get all devices. fp_context_enumerate() will be called as needed. * - * Returns: (transfer none) (element-type FpDevice): a new #GPtrArray of #FpDevice's. + * Returns: (transfer none) (element-type FpDevice): a #GPtrArray of #FpDevice's. */ GPtrArray * fp_context_get_devices (FpContext *context)