Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ad1c854f authored by Gopalakrishnan Nallasamy's avatar Gopalakrishnan Nallasamy
Browse files

Range.java:Correct sign error in description

Current description for android.util.Range says ""All ranges are bounded, and the left side of the
range is always {@code >=} * the right side of the range." It should have been  "<=" there instead
of ">=".  So, corrected that in this CL.

Bug: 122271254

Test: make offline-sdk-docs
      Modified description was visible correctly.

Change-Id: I1eaa94210b39813b3e72ac2a0834bc0b466a99a5
parent 12fbb578
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ import android.hardware.camera2.utils.HashCodeHelpers;
 * "integers from 1 to 100 inclusive."
 * </p>
 * <p>
 * All ranges are bounded, and the left side of the range is always {@code >=}
 * All ranges are bounded, and the left side of the range is always {@code <=}
 * the right side of the range.
 * </p>
 *