fixed typos and grammar

This commit is contained in:
Karl Tauber
2024-01-11 18:11:09 +01:00
parent 6fdc56f2d3
commit cf3fa17666
49 changed files with 90 additions and 91 deletions

View File

@@ -837,7 +837,7 @@ public class FlatDisabledIconsTest
// Calculate the average.
// Sun's formula: Math.min(1.0f, (1f - avg) / (100.0f / 35.0f) + avg);
// The following formula uses less operations and hence is faster.
// The following formula uses fewer operations and hence is faster.
avg = Math.min(1.0f, 0.35f + 0.65f * avg);
// Convert back into RGB.
return (int) (alpha * 255f) << 24 |