Merge "docs: Fix documentation typo" into oc-mr1-dev

am: f8fb25ca04

Change-Id: I450ba09a2f6efb155601cd08fe9e1d0c35e9fec5
This commit is contained in:
Andrew Solovay
2017-10-31 16:31:12 +00:00
committed by android-build-merger

View File

@@ -73,7 +73,7 @@ import java.util.function.DoubleUnaryOperator;
* <h4>Encoding</h4>
* <p>The four components of a color int are encoded in the following way:</p>
* <pre class="prettyprint">
* int color = (A & 0xff) << 24 | (R & 0xff) << 16 | (G & 0xff) << 16 | (B & 0xff);
* int color = (A & 0xff) << 24 | (R & 0xff) << 16 | (G & 0xff) << 8 | (B & 0xff);
* </pre>
*
* <p>Because of this encoding, color ints can easily be described as an integer