Skip to content

Commit 5c607d7

Browse files
committedJan 16, 2021
update doc
1 parent 631be2b commit 5c607d7

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
 

‎src/main/java/io/github/cdimascio/dotenv/Dotenv.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import java.util.Set;
44

55
/**
6-
* Creates and configures a new dotenv instance
6+
* Creates and configures a new Dotenv instance
77
*/
88
public interface Dotenv {
99

‎src/main/java/io/github/cdimascio/dotenv/DotenvEntry.java

+5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ public class DotenvEntry {
88
private final String key;
99
private final String value;
1010

11+
/**
12+
* Creates a new dotenv entry using the provided key and value
13+
* @param key
14+
* @param value
15+
*/
1116
public DotenvEntry(String key, String value) {
1217
this.key = key;
1318
this.value = value;

0 commit comments

Comments
 (0)
Please sign in to comment.