diff --git a/MVMCoreUI/Atoms/Views/Label.swift b/MVMCoreUI/Atoms/Views/Label.swift index c8bd0981..65ac4c70 100644 --- a/MVMCoreUI/Atoms/Views/Label.swift +++ b/MVMCoreUI/Atoms/Views/Label.swift @@ -19,14 +19,14 @@ public typealias ActionBlock = () -> Void public var makeWholeViewClickable = false - // Set this property if you want updateView to update the font based on this standard and the size passed in. + /// Set this property if you want updateView to update the font based on this standard and the size passed in. public var standardFontSize: CGFloat = 0.0 - // Set this to use a custom sizing object during updateView instead of the standard. + /// Set this to use a custom sizing object during updateView instead of the standard. public var sizeObject: MFSizeObject? public var scaleSize: NSNumber? - // Used for scaling the font in updateView. + /// Used for scaling the font in updateView. private var originalAttributedString: NSAttributedString? public var hasText: Bool { @@ -42,7 +42,7 @@ public typealias ActionBlock = () -> Void didSet { isUserInteractionEnabled = !clauses.isEmpty } } - // Used for tappable links in the text. + /// Used for tappable links in the text. public struct ActionableClause { var range: NSRange? var actionBlock: ActionBlock?