summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Toso <victortoso@gnome.org>2021-03-30 22:00:32 +0200
committerVictor Toso <victortoso@gnome.org>2021-04-15 21:09:30 +0200
commit96a2e4af3f5bffc3c2d97b75824802392eb74c0f (patch)
treecd5fe95e46c13be5ddaf8e633d830dc9ae8f196b
parentabbca701bd45c0710cb1bd69c0bded002405c336 (diff)
downloadgrilo-96a2e4af3f5bffc3c2d97b75824802392eb74c0f.tar.gz
typo: remove double comma in doc
-rw-r--r--src/data/grl-data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data/grl-data.c b/src/data/grl-data.c
index 455121d..988cd80 100644
--- a/src/data/grl-data.c
+++ b/src/data/grl-data.c
@@ -1029,7 +1029,7 @@ grl_data_add_int64 (GrlData *data,
* As example, let's think in three related keys, K1, K2 and K3, and then thinks
* we have added several values for those keys, as:
*
- * (V10, V20, V30),, (V11, NULL, V31), (V12, NULL, V32)
+ * (V10, V20, V30), (V11, NULL, V31), (V12, NULL, V32)
*
* Therefore, when invoking grl_data_length (data, K2) it will return 3:
* considering K2 and the related keys (K1 and K3), there are 3 values.