diff --git a/Assets/Cryville/Common/Font/FontMatcher.cs b/Assets/Cryville/Common/Font/FontMatcher.cs index b7bb1d4..642fb5c 100644 --- a/Assets/Cryville/Common/Font/FontMatcher.cs +++ b/Assets/Cryville/Common/Font/FontMatcher.cs @@ -6,7 +6,7 @@ using System.Linq; namespace Cryville.Common.Font { public abstract class FontMatcher { protected FontManager Manager { get; private set; } - public FontMatcher(FontManager manafer) { Manager = manafer; } + public FontMatcher(FontManager manager) { Manager = manager; } public abstract IEnumerable MatchScript(string script = null, bool distinctFamily = false); } public class FallbackListFontMatcher : FontMatcher {