Skip to content

Commit

Permalink
Fix link, remove constructor docs that are not viewable
Browse files Browse the repository at this point in the history
  • Loading branch information
Jawnnypoo committed Feb 21, 2022
1 parent 98539d3 commit e9cef23
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions src/main/kotlin/com/commit451/resourcespoet/FontFamily.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,10 @@ package com.commit451.resourcespoet

/**
* Represents an Android Font
* See <a https:></a>//developer.android.com/guide/topics/ui/look-and-feel/fonts-in-xml">https://developer.android.com/guide/topics/ui/look-and-feel/fonts-in-xml
* See [the Android docs](https://developer.android.com/guide/topics/ui/look-and-feel/fonts-in-xml)
*/
data class FontFamily
/**
* Construct a Font family
* @param fontStyle the font style
* @param fontWeight the font weight value
* @param font reference to the font file
*/
(val fontStyle: String, val fontWeight: String, val font: String)
data class FontFamily(
val fontStyle: String,
val fontWeight: String,
val font: String
)

0 comments on commit e9cef23

Please sign in to comment.