From 0aeb3852386164b64514b43fa8e4087e3d69e0f7 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Mon, 2 Mar 2020 18:32:22 -0800 Subject: [PATCH] Cleanup. --- config/dokka/packages.md | 4 +++- src/main/kotlin/net/thauvin/erik/bitly/Constants.kt | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/config/dokka/packages.md b/config/dokka/packages.md index 35f9f44..9a50a88 100644 --- a/config/dokka/packages.md +++ b/config/dokka/packages.md @@ -1,3 +1,5 @@ # Module bitly-shorten -[Bitly Shortener for Kotlin/Java](https://github.com/ethauvin/bitly-shorten), a simple implementation of the [Bitly API v4](https://dev.bitly.com/v4/). +[Bitly Shortener for Kotlin/Java](https://github.com/ethauvin/bitly-shorten) + +A simple implementation of the link shortening ([bitlinks](https://dev.bitly.com/v4/#tag/Bitlinks)) abilities of the [Bitly v4 API](https://dev.bitly.com/v4). diff --git a/src/main/kotlin/net/thauvin/erik/bitly/Constants.kt b/src/main/kotlin/net/thauvin/erik/bitly/Constants.kt index 69081ca..1122737 100644 --- a/src/main/kotlin/net/thauvin/erik/bitly/Constants.kt +++ b/src/main/kotlin/net/thauvin/erik/bitly/Constants.kt @@ -47,10 +47,10 @@ open class Constants private constructor() { */ const val ENV_ACCESS_TOKEN = "BITLY_ACCESS_TOKEN" - /** Empty String */ + /** Empty String. */ const val EMPTY = "" - /** Empty JSON Object */ + /** Empty JSON Object. */ const val EMPTY_JSON = "{}" } }