Skip to content

Commit fe7f25f

Browse files
correct typo in docstring of maximum operator max
1 parent 0cf9d03 commit fe7f25f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/src/main/scala-2/chisel3/NumIntf.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ private[chisel3] trait NumIntf[T <: Data] extends SourceInfoDoc { self: Num[T] =
147147
/** Maximum operator
148148
*
149149
* @param that a $numType
150-
* @return a $numType with a value equal to the minimum value of this $coll and `that`
150+
* @return a $numType with a value equal to the maximum value of this $coll and `that`
151151
* $maxWidth
152152
* @group Arithmetic
153153
*/

core/src/main/scala-3/chisel3/NumIntf.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ private[chisel3] trait NumIntf[T <: Data] { self: Num[T] =>
115115
/** Maximum operator
116116
*
117117
* @param that a $numType
118-
* @return a $numType with a value equal to the minimum value of this $coll and `that`
118+
* @return a $numType with a value equal to the maximum value of this $coll and `that`
119119
* $maxWidth
120120
* @group Arithmetic
121121
*/

0 commit comments

Comments
 (0)