From d783e08004e2daace50dfcfebb66727b4c13794e Mon Sep 17 00:00:00 2001 From: bungeman Date: Mon, 1 Aug 2016 12:37:13 -0700 Subject: Replace 'Ulta' with 'Ultra'. Start fixing a typo in an enum name. TBR=reed This is just a typo fix. Review-Url: https://codereview.chromium.org/2202703002 --- src/core/SkFontStyle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/SkFontStyle.cpp') diff --git a/src/core/SkFontStyle.cpp b/src/core/SkFontStyle.cpp index fc50f1f73f..a24e7cde2e 100644 --- a/src/core/SkFontStyle.cpp +++ b/src/core/SkFontStyle.cpp @@ -19,7 +19,7 @@ SkFontStyle::SkFontStyle() { SkFontStyle::SkFontStyle(int weight, int width, Slant slant) { fUnion.fU32 = 0; fUnion.fR.fWeight = SkTPin(weight, kInvisible_Weight, kExtraBlack_Weight); - fUnion.fR.fWidth = SkTPin(width, kUltraCondensed_Width, kUltaExpanded_Width); + fUnion.fR.fWidth = SkTPin(width, kUltraCondensed_Width, kUltraExpanded_Width); fUnion.fR.fSlant = SkTPin(slant, kUpright_Slant, kOblique_Slant); } -- cgit v1.2.3