aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkFontStyle.cpp
diff options
context:
space:
mode:
authorGravatar bungeman <bungeman@google.com>2016-08-01 12:37:13 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-08-01 12:37:13 -0700
commitd783e08004e2daace50dfcfebb66727b4c13794e (patch)
tree18f5b6f169b2fde7b518fe48f656a4942778babf /src/core/SkFontStyle.cpp
parent35f3e59d1c9900a00f31928b83bf7c2bfe4c7647 (diff)
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
Diffstat (limited to 'src/core/SkFontStyle.cpp')
-rw-r--r--src/core/SkFontStyle.cpp2
1 files changed, 1 insertions, 1 deletions
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<int>(weight, kInvisible_Weight, kExtraBlack_Weight);
- fUnion.fR.fWidth = SkTPin<int>(width, kUltraCondensed_Width, kUltaExpanded_Width);
+ fUnion.fR.fWidth = SkTPin<int>(width, kUltraCondensed_Width, kUltraExpanded_Width);
fUnion.fR.fSlant = SkTPin<int>(slant, kUpright_Slant, kOblique_Slant);
}