diff --git a/jOOQ-website/src/main/resources/manual-2.6.xml b/jOOQ-website/src/main/resources/manual-2.6.xml
index 8323105208..75cff5e6c8 100644
--- a/jOOQ-website/src/main/resources/manual-2.6.xml
+++ b/jOOQ-website/src/main/resources/manual-2.6.xml
@@ -3279,32 +3279,43 @@ create.select(concat("A", "B", "C"));
count();
-AggregateFunction count(Field> field);
-AggregateFunction max(Field field);
-AggregateFunction min(Field field);
-AggregateFunction sum(Field extends Number> field);
-AggregateFunction avg(Field extends Number> field);
+AggregateFunction count();
+AggregateFunction count(Field> field);
+AggregateFunction max (Field field);
+AggregateFunction min (Field field);
+AggregateFunction sum (Field extends Number> field);
+AggregateFunction avg (Field extends Number> field);
// DISTINCT keyword in aggregate functions
-AggregateFunction countDistinct(Field> field);
-AggregateFunction maxDistinct(Field field);
-AggregateFunction minDistinct(Field field);
-AggregateFunction sumDistinct(Field extends Number> field);
-AggregateFunction avgDistinct(Field extends Number> field);
+AggregateFunction countDistinct(Field> field);
+AggregateFunction maxDistinct (Field field);
+AggregateFunction minDistinct (Field field);
+AggregateFunction sumDistinct (Field extends Number> field);
+AggregateFunction avgDistinct (Field extends Number> field);
// String aggregate functions
-AggregateFunction groupConcat(Field> field);
+AggregateFunction groupConcat (Field> field);
AggregateFunction groupConcatDistinct(Field> field);
OrderedAggregateFunction listAgg(Field> field);
OrderedAggregateFunction listAgg(Field> field, String separator);
// Statistical functions
-AggregateFunction median(Field extends Number> field);
-AggregateFunction stddevPop(Field extends Number> field);
+AggregateFunction median (Field extends Number> field);
+AggregateFunction stddevPop (Field extends Number> field);
AggregateFunction stddevSamp(Field extends Number> field);
-AggregateFunction varPop(Field extends Number> field);
-AggregateFunction varSamp(Field extends Number> field);]]>
+AggregateFunction varPop (Field extends Number> field);
+AggregateFunction varSamp (Field extends Number> field);
+
+// Linear regression functions
+AggregateFunction regrAvgX (Field extends Number> y, Field extends Number> x);
+AggregateFunction regrAvgY (Field extends Number> y, Field extends Number> x);
+AggregateFunction regrCount (Field extends Number> y, Field extends Number> x);
+AggregateFunction regrIntercept(Field extends Number> y, Field extends Number> x);
+AggregateFunction regrR2 (Field extends Number> y, Field extends Number> x);
+AggregateFunction regrSlope (Field extends Number> y, Field extends Number> x);
+AggregateFunction regrSXX (Field extends Number> y, Field extends Number> x);
+AggregateFunction regrSXY (Field extends Number> y, Field extends Number> x);
+AggregateFunction regrSYY (Field extends Number> y, Field extends Number> x);]]>
Here's an example, counting the number of books any author has written: