diff --git a/README.md b/README.md index 42a3994..a950643 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Replace `${version}` with the current version!
Gradle KTS -```kotlin +```kt repositories { maven("https://jitpack.io") } @@ -38,7 +38,7 @@ dependencies {
Gradle Groovy -``` +```groovy repositories { maven { url 'https://jitpack.io' } } @@ -53,7 +53,7 @@ dependencies {
Maven -``` +```xml jitpack.io @@ -86,7 +86,7 @@ dependencies {
Kotlin -```kotlin +```kt val whoIs = WhoIs("google.com") whoIs.doRequest().forEach(::println) ``` @@ -119,4 +119,4 @@ give a better chance of it being resolved. WHOIS (pronounced as the phrase "who is") is a query and response protocol that is widely used for querying databases that store the registered users or assignees of an Internet resource, such as a domain name, an IP address block or an autonomous system, but is also used for a wider range of other information. The protocol stores and delivers database content in a human-readable format. The current iteration of the WHOIS protocol was drafted by the Internet Society, and is documented in RFC 3912. Source: [Wikipedia](https://en.wikipedia.org/wiki/WHOIS) -See [Wikipedia](https://en.wikipedia.org/wiki/WHOIS) for more information. \ No newline at end of file +See [Wikipedia](https://en.wikipedia.org/wiki/WHOIS) for more information.