Skip to content

Commit

Permalink
Fix public API declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
eyeplum committed Jun 10, 2015
1 parent 7fe0a84 commit ef22cdf
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/FuriganaTextView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import UIKit

public struct FuriganaTextStyle
{
let hostingLineHeightMultiple: CGFloat
let textOffsetMultiple: CGFloat
public let hostingLineHeightMultiple: CGFloat
public let textOffsetMultiple: CGFloat
}

// MARK: - Base Class
Expand All @@ -21,14 +21,14 @@ public class FuriganaTextView: UIView

// MARK: - Public

var scrollEnabled: Bool = true
var alignment: NSTextAlignment = .Left
public var scrollEnabled: Bool = true
public var alignment: NSTextAlignment = .Left

var furiganaEnabled = true
var furiganaTextStyle = FuriganaTextStyle(hostingLineHeightMultiple: 1.6, textOffsetMultiple: 0)
var furiganas: [Furigana]?
public var furiganaEnabled = true
public var furiganaTextStyle = FuriganaTextStyle(hostingLineHeightMultiple: 1.6, textOffsetMultiple: 0)
public var furiganas: [Furigana]?

var contents: NSAttributedString?
public var contents: NSAttributedString?
{
set
{
Expand Down

0 comments on commit ef22cdf

Please sign in to comment.