Skip to content

Commit 4ba09c7

Browse files
authored
Update README.md
1 parent 330ce4e commit 4ba09c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ BASIC EXAMPLE
1313
override func viewDidLoad() {
1414
super.viewDidLoad()
1515
view.backgroundColor = .red
16-
let vc = WebViewLibrary(link: "https://your-url")
17-
self.navigationController?.present(vc, animated: true)
16+
let viewController = WebViewLibrary(link: "https://your-url")
17+
self.navigationController?.present(viewController, animated: true)
1818
}
1919
}
2020

@@ -23,7 +23,7 @@ Futher Customization
2323
---------
2424
If you do not need the link textfield to show, you can do this:
2525
```swift
26-
let vc = TestViewController(link: "https://fb.com", isLinkTextfieldHidden: true)
26+
let viewController = WebViewLibrary(link: "https://fb.com", isLinkTextfieldHidden: true)
2727
```
2828

2929
Setup Instruction

0 commit comments

Comments
 (0)