diff --git a/android/src/main/java/com/horcrux/svg/GlyphContext.java b/android/src/main/java/com/horcrux/svg/GlyphContext.java index 07629620..15f3deab 100644 --- a/android/src/main/java/com/horcrux/svg/GlyphContext.java +++ b/android/src/main/java/com/horcrux/svg/GlyphContext.java @@ -401,7 +401,7 @@ class GlyphContext { * Get font size from context. *

* ‘font-size’ - * Value: | | | | inherit + * Value: < absolute-size > | < relative-size > | < length > | < percentage > | inherit * Initial: medium * Applies to: text content elements * Inherited: yes, the computed value is inherited @@ -413,14 +413,14 @@ class GlyphContext { * baseline when multiple lines of text are set solid in a multiline * layout environment. *

- * For SVG, if a is provided without a unit identifier + * For SVG, if a < length > is provided without a unit identifier * (e.g., an unqualified number such as 128), the SVG user agent - * processes the as a height value in the current user + * processes the < length > as a height value in the current user * coordinate system. *

- * If a is provided with one of the unit identifiers + * If a < length > is provided with one of the unit identifiers * (e.g., 12pt or 10%), then the SVG user agent converts the - * into a corresponding value in the current user + * < length > into a corresponding value in the current user * coordinate system by applying the rules described in Units. *

* Except for any additional information provided in this specification,