From a18b14e962842f51467339f2ef754359b8fd28ad Mon Sep 17 00:00:00 2001 From: Kevin Brightwell Date: Mon, 22 Apr 2024 07:09:58 -0400 Subject: [PATCH] README: Update language in `Templates` section This updates the language in the `Templates` section after gathering clarification in #83. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4323200..69e734d 100644 --- a/README.md +++ b/README.md @@ -55,9 +55,9 @@ println(env.BAZ.orElse("default baz")) // => baz ### Templates -If a `.env.template` file exists, this plugin populates environment variables from it, too. This means you can use the template to define the environment variables that are required for your project, and optionally override them in the `.env` file. +If a `.env.template` file exists, this plugin populates environment variables names from the template, too. This means you can use the template to define the environment variables that are required for your project, and override them in the `.env` file. Values within the `.env.template` file are *not* populated when read, all values will be `null`. -[See the example](/examples/change_template_file) for more details. +[See the `change_template_file` example](/examples/change_template_file) for more details. ### Changing the name of the `.env` file