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
1 changed files with 5 additions and 5 deletions

View File

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