From 82243e5150f67b6fe8c6f8f650bf3b492823c3e7 Mon Sep 17 00:00:00 2001 From: Francisco Capdevila Date: Sat, 26 Mar 2016 18:34:18 -0300 Subject: [PATCH] Fixed typo in docs/ref/contrib/postgres/aggregates.txt. --- docs/ref/contrib/postgres/aggregates.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/contrib/postgres/aggregates.txt b/docs/ref/contrib/postgres/aggregates.txt index aa6d091705..30974989c2 100644 --- a/docs/ref/contrib/postgres/aggregates.txt +++ b/docs/ref/contrib/postgres/aggregates.txt @@ -118,7 +118,7 @@ field or an expression returning a numeric data. Both are required. .. class:: RegrAvgY(y, x) - Returns the average of the independent variable (``sum(y)/N``) as a + Returns the average of the dependent variable (``sum(y)/N``) as a ``float``, or ``None`` if there aren't any matching rows. ``RegrCount``