From 665c2c906a06d6983b329b4b796836e9973549d7 Mon Sep 17 00:00:00 2001
From: cgeek <cem.moreau@gmail.com>
Date: Wed, 4 Jan 2017 17:00:10 +0100
Subject: [PATCH] [fix] Protocol: the MEDIAN function should not round the
 result in cas of even value

---
 doc/Protocol.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/Protocol.md b/doc/Protocol.md
index 4091e587c..02d4311c5 100644
--- a/doc/Protocol.md
+++ b/doc/Protocol.md
@@ -1399,7 +1399,7 @@ Function references:
 * *MEDIAN* computes the median value in a list of values
 * *MAX* computes the maximum value in a list of values
 
-> If values count is even, the median is computed over the 2 centered values by an arithmetical median on them, ceil rounded.
+> If values count is even, the median is computed over the 2 centered values by an arithmetical median on them, *NOT* rounded.
 
 * *UNIQ* returns a list of the unique values in a list of values
 * *INTEGER_PART* return the integer part of a number
-- 
GitLab