|
25 | 25 | * |
26 | 26 | * <pre> |
27 | 27 | * Represents a color in the RGBA color space. This representation is designed |
28 | | - * for simplicity of conversion to/from color representations in various |
| 28 | + * for simplicity of conversion to and from color representations in various |
29 | 29 | * languages over compactness. For example, the fields of this representation |
30 | 30 | * can be trivially provided to the constructor of `java.awt.Color` in Java; it |
31 | 31 | * can also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha` |
32 | 32 | * method in iOS; and, with just a little work, it can be easily formatted into |
33 | 33 | * a CSS `rgba()` string in JavaScript. |
34 | 34 | * |
35 | | - * This reference page doesn't carry information about the absolute color |
36 | | - * space |
37 | | - * that should be used to interpret the RGB value (e.g. sRGB, Adobe RGB, |
38 | | - * DCI-P3, BT.2020, etc.). By default, applications should assume the sRGB color |
| 35 | + * This reference page doesn't have information about the absolute color |
| 36 | + * space that should be used to interpret the RGB value—for example, sRGB, |
| 37 | + * Adobe RGB, |
| 38 | + * DCI-P3, and BT.2020. By default, applications should assume the sRGB color |
39 | 39 | * space. |
40 | 40 | * |
41 | | - * When color equality needs to be decided, implementations, unless |
42 | | - * documented otherwise, treat two colors as equal if all their red, |
43 | | - * green, blue, and alpha values each differ by at most 1e-5. |
| 41 | + * When color equality needs to be decided, implementations, unless documented |
| 42 | + * otherwise, treat two colors as equal if all their red, green, blue, and alpha |
| 43 | + * values each differ by at most `1e-5`. |
44 | 44 | * |
45 | 45 | * Example (Java): |
46 | 46 | * |
@@ -523,22 +523,22 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessage.Builder |
523 | 523 | * |
524 | 524 | * <pre> |
525 | 525 | * Represents a color in the RGBA color space. This representation is designed |
526 | | - * for simplicity of conversion to/from color representations in various |
| 526 | + * for simplicity of conversion to and from color representations in various |
527 | 527 | * languages over compactness. For example, the fields of this representation |
528 | 528 | * can be trivially provided to the constructor of `java.awt.Color` in Java; it |
529 | 529 | * can also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha` |
530 | 530 | * method in iOS; and, with just a little work, it can be easily formatted into |
531 | 531 | * a CSS `rgba()` string in JavaScript. |
532 | 532 | * |
533 | | - * This reference page doesn't carry information about the absolute color |
534 | | - * space |
535 | | - * that should be used to interpret the RGB value (e.g. sRGB, Adobe RGB, |
536 | | - * DCI-P3, BT.2020, etc.). By default, applications should assume the sRGB color |
| 533 | + * This reference page doesn't have information about the absolute color |
| 534 | + * space that should be used to interpret the RGB value—for example, sRGB, |
| 535 | + * Adobe RGB, |
| 536 | + * DCI-P3, and BT.2020. By default, applications should assume the sRGB color |
537 | 537 | * space. |
538 | 538 | * |
539 | | - * When color equality needs to be decided, implementations, unless |
540 | | - * documented otherwise, treat two colors as equal if all their red, |
541 | | - * green, blue, and alpha values each differ by at most 1e-5. |
| 539 | + * When color equality needs to be decided, implementations, unless documented |
| 540 | + * otherwise, treat two colors as equal if all their red, green, blue, and alpha |
| 541 | + * values each differ by at most `1e-5`. |
542 | 542 | * |
543 | 543 | * Example (Java): |
544 | 544 | * |
|
0 commit comments