@@ -157,7 +157,7 @@ CREATE FUNCTION
157157std :: sum (s: SET OF std :: bigint ) -> std :: bigint
158158{
159159 CREATE ANNOTATION std :: description :=
160- ' Return the sum of the set of numbers .' ;
160+ ' Return the arithmetic sum of values in a set .' ;
161161 SET volatility := ' Immutable' ;
162162 SET initial_value := 0 ;
163163 SET force_return_cast := true ;
@@ -169,7 +169,7 @@ CREATE FUNCTION
169169std :: sum (s: SET OF std :: decimal ) -> std :: decimal
170170{
171171 CREATE ANNOTATION std :: description :=
172- ' Return the sum of the set of numbers .' ;
172+ ' Return the arithmetic sum of values in a set .' ;
173173 SET volatility := ' Immutable' ;
174174 SET initial_value := 0 ;
175175 USING SQL FUNCTION ' sum' ;
@@ -180,7 +180,7 @@ CREATE FUNCTION
180180std :: sum (s: SET OF std :: int32 ) -> std :: int64
181181{
182182 CREATE ANNOTATION std :: description :=
183- ' Return the sum of the set of numbers .' ;
183+ ' Return the arithmetic sum of values in a set .' ;
184184 SET volatility := ' Immutable' ;
185185 SET initial_value := 0 ;
186186 SET force_return_cast := true ;
@@ -192,7 +192,7 @@ CREATE FUNCTION
192192std :: sum (s: SET OF std :: int64 ) -> std :: int64
193193{
194194 CREATE ANNOTATION std :: description :=
195- ' Return the sum of the set of numbers .' ;
195+ ' Return the arithmetic sum of values in a set .' ;
196196 SET volatility := ' Immutable' ;
197197 SET initial_value := 0 ;
198198 SET force_return_cast := true ;
@@ -204,7 +204,7 @@ CREATE FUNCTION
204204std :: sum (s: SET OF std :: float32 ) -> std :: float32
205205{
206206 CREATE ANNOTATION std :: description :=
207- ' Return the sum of the set of numbers .' ;
207+ ' Return the arithmetic sum of values in a set .' ;
208208 SET volatility := ' Immutable' ;
209209 SET initial_value := 0 ;
210210 USING SQL FUNCTION ' sum' ;
@@ -215,7 +215,7 @@ CREATE FUNCTION
215215std :: sum (s: SET OF std :: float64 ) -> std :: float64
216216{
217217 CREATE ANNOTATION std :: description :=
218- ' Return the sum of the set of numbers .' ;
218+ ' Return the arithmetic sum of values in a set .' ;
219219 SET volatility := ' Immutable' ;
220220 SET initial_value := 0 ;
221221 USING SQL FUNCTION ' sum' ;
0 commit comments