Skip to content

Commit

Permalink
update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
cdimascio committed Jan 16, 2021
1 parent 631be2b commit 5c607d7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/github/cdimascio/dotenv/Dotenv.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import java.util.Set;

/**
* Creates and configures a new dotenv instance
* Creates and configures a new Dotenv instance
*/
public interface Dotenv {

Expand Down
5 changes: 5 additions & 0 deletions src/main/java/io/github/cdimascio/dotenv/DotenvEntry.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ public class DotenvEntry {
private final String key;
private final String value;

/**
* Creates a new dotenv entry using the provided key and value
* @param key
* @param value
*/
public DotenvEntry(String key, String value) {
this.key = key;
this.value = value;
Expand Down

0 comments on commit 5c607d7

Please sign in to comment.