Skip to content

Commit

Permalink
removes redundant protocol conformity information
Browse files Browse the repository at this point in the history
  • Loading branch information
Hendrik Schultjan committed Feb 14, 2017
1 parent 0ff6028 commit 165bb36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/M13Checkbox.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ open class M13Checkbox: UIControl {
- Checked: A checkmark is shown.
- Mixed: A dash is shown.
*/
public enum CheckState: String, RawRepresentable {
public enum CheckState: String {
/// No check is shown.
case unchecked = "Unchecked"
/// A checkmark is shown.
Expand All @@ -43,7 +43,7 @@ open class M13Checkbox: UIControl {
- Square: The box is square with optional rounded corners.
- Circle: The box is a circle.
*/
public enum BoxType: String, RawRepresentable {
public enum BoxType: String {
/// The box is a circle.
case circle = "Circle"
/// The box is square with optional rounded corners.
Expand All @@ -56,7 +56,7 @@ open class M13Checkbox: UIControl {
- Checkmark: The mark is a standard checkmark.
- Radio: The mark is a radio style fill.
*/
public enum MarkType: String, RawRepresentable {
public enum MarkType: String {
/// The mark is a standard checkmark.
case checkmark = "Checkmark"
/// The mark is a radio style fill.
Expand Down

0 comments on commit 165bb36

Please sign in to comment.