From 3cc23751f456fe9757491611cc15244657b6c7e8 Mon Sep 17 00:00:00 2001 From: Carmine DiMascio Date: Thu, 30 Nov 2017 16:28:04 -0500 Subject: [PATCH] update readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 963395e..141dc4c 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ val dotenv = Dotenv Note, environment variables specified in `.env` take precedence over those configured in the actual environment. with Kotlin -```Kotlin +```kotlin dotenv["MY_ENV_VAR1"] ``` @@ -69,7 +69,7 @@ Dotenv dotenv = Dotenv.Instance #### Get an environment variable Note, environment variables specified in `.env` take precedence over those configured in the actual environment. -``` +```java dotenv.get("MY_ENV_VAR1"); ```