From 4bdab39a432f3ea3ede0a8e5aa80bb7764064d0d Mon Sep 17 00:00:00 2001 From: James Fenn <18jafenn90@gmail.com> Date: Mon, 3 Jun 2019 15:44:53 -0400 Subject: [PATCH] remove line breaks from language summaries --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index 3b2f30c..fcd682a 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();