diff --git a/reference/sqlite/functions/sqlite-create-aggregate.xml b/reference/sqlite/functions/sqlite-create-aggregate.xml
index 3345a998c2..905a870ebc 100644
--- a/reference/sqlite/functions/sqlite-create-aggregate.xml
+++ b/reference/sqlite/functions/sqlite-create-aggregate.xml
@@ -75,6 +75,7 @@
Callback function called for each row of the result set.
+ Function parameters are &$context, $value, ....
@@ -83,6 +84,8 @@
Callback function to aggregate the "stepped" data from each row.
+ Function parameter is &$context and the function
+ should return the final result of aggregation.