Corrected comment

This commit is contained in:
Valentin Kipyatkov
2016-08-18 11:09:42 +03:00
parent 61d1826980
commit 7c92f7974f
@@ -56,6 +56,16 @@ class MaxOrMinTransformation(
* variable = if (variable > <input variable>) <input variable> else variable
* }
* }
* or
*
* val variable = <initial>
* for (...) {
* ...
* // or Math.min or operands swapped
* variable = Math.max(variable, <expression>)
* }
* }
*/
object Matcher : TransformationMatcher {
override val indexVariableAllowed: Boolean