Skip to content

Commit 1a02fd2

Browse files
committed
Update Max and Min documentation
1 parent 4971e94 commit 1a02fd2

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/cls/Math/Math.cls

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ ClassMethod LCM(pFactors...) As %Integer [ CodeMode = expression ]
4545
##class(Math.Math).LeastCommonMultiple(pFactors...)
4646
}
4747

48-
/// Accepts a variable number of parameters and outputs the max value
48+
/// Accepts a variable number of parameters and outputs the max value</br>
49+
/// Null input is not valid
4950
ClassMethod Max(pIntegers...) As %Integer
5051
{
5152
Set tSC=##class(Math.Utils).ValidateInput(pIntegers...)
@@ -61,7 +62,8 @@ ClassMethod Max(pIntegers...) As %Integer
6162
Quit tMax
6263
}
6364

64-
/// Accepts a variable number of parameters and outputs the min value
65+
/// Accepts a variable number of parameters and outputs the min value</br>
66+
/// Null input is not valid
6567
ClassMethod Min(pIntegers...) As %Integer
6668
{
6769
Set tSC=##class(Math.Utils).ValidateInput(pIntegers...)

0 commit comments

Comments
 (0)