Skip to content
This repository was archived by the owner on Nov 26, 2020. It is now read-only.

Commit 94a014f

Browse files
Fix mutable var and warning
1 parent d5c1917 commit 94a014f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/FolioReaderPage.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public class FolioReaderPage: UICollectionViewCell, UIWebViewDelegate, UIGesture
108108

109109
func loadHTMLString(htmlContent: String!, baseURL: NSURL!) {
110110
// Insert the stored highlights to the HTML
111-
var tempHtmlContent = htmlContentWithInsertHighlights(htmlContent)
111+
let tempHtmlContent = htmlContentWithInsertHighlights(htmlContent)
112112
// Load the html into the webview
113113
webView.alpha = 0
114114
webView.loadHTMLString(tempHtmlContent, baseURL: baseURL)

0 commit comments

Comments
 (0)