cosmetics: fix some typos

Change-Id: I0d6efebd817815139db5ae87236fd8911df4d53c
This commit is contained in:
James Zern
2013-11-26 19:21:14 -08:00
parent cb261f790f
commit 4931c3294b
13 changed files with 15 additions and 15 deletions

View File

@ -201,7 +201,7 @@ static uint32_t GetFilterMap(const uint8_t* alpha, int width, int height,
const int kMinColorsForFilterNone = 16;
const int kMaxColorsForFilterNone = 192;
const int num_colors = GetNumColors(alpha, width, height, width);
// For low number of colors, NONE yeilds better compression.
// For low number of colors, NONE yields better compression.
filter = (num_colors <= kMinColorsForFilterNone) ? WEBP_FILTER_NONE :
EstimateBestFilter(alpha, width, height, width);
bit_map |= 1 << filter;