diff --git a/README.md b/README.md index 26289df..0c02b7d 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,6 @@ of the Doki API that is quick and easy to set up and use. Simply call
Kotlin -
 DokiActivity.start(context = ...)
 
@@ -58,7 +57,6 @@ DokiActivity.start(context = ...)
Java -
 DokiActivity.start(context);
 
@@ -87,7 +85,6 @@ you must call `loadContent()` on the view.
Kotlin -
 val dokiView : DokiContentView? = findViewById(R.id.doki_content)
dokiView?.loadContent() @@ -96,7 +93,6 @@ dokiView?.loadContent()
Java -
 DokiContentView dokiView = findViewById(R.id.doki_content);
if (dokiView != null) dokiView.loadContent();