Skip to content

Commit

Permalink
Make TextView non-final
Browse files Browse the repository at this point in the history
  • Loading branch information
nighthawk committed Jun 4, 2022
1 parent 453910c commit 15c9f1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Runestone/TextView/TextView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import UIKit
///
/// When initially configuring the `TextView` with a theme, a language and the text to be shown, it is recommended to use the ``setState(_:addUndoAction:)`` function.
/// The function takes an instance of ``TextViewState`` as input which can be created on a background queue to avoid blocking the main queue while doing the initial parse of a text.
open final class TextView: UIScrollView {
open class TextView: UIScrollView {
/// Delegate to receive callbacks for events triggered by the editor.
public weak var editorDelegate: TextViewDelegate?
/// Whether the text view is in a state where the contents can be edited.
Expand Down

0 comments on commit 15c9f1e

Please sign in to comment.