1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-08 05:52:54 +08:00

Apply suggestions from code review

Co-Authored-By: Dan Balasescu <smoogipoo@smgi.me>
This commit is contained in:
Dean Herbert 2020-03-04 12:44:44 +09:00 committed by GitHub
parent 75968fb4ba
commit e9b0770f64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -109,27 +109,27 @@ namespace osu.Game.Graphics
Light = 300, Light = 300,
/// <summary> /// <summary>
/// equivalent to weight 400 /// Equivalent to weight 400.
/// </summary> /// </summary>
Regular = 400, Regular = 400,
/// <summary> /// <summary>
/// equivalent to weight 500 /// Equivalent to weight 500.
/// </summary> /// </summary>
Medium = 500, Medium = 500,
/// <summary> /// <summary>
/// equivalent to weight 600 /// Equivalent to weight 600.
/// </summary> /// </summary>
SemiBold = 600, SemiBold = 600,
/// <summary> /// <summary>
/// equivalent to weight 700 /// Equivalent to weight 700.
/// </summary> /// </summary>
Bold = 700, Bold = 700,
/// <summary> /// <summary>
/// equivalent to weight 900 /// Equivalent to weight 900.
/// </summary> /// </summary>
Black = 900 Black = 900
} }