diff --git a/README.md b/README.md index 1dd856b..4e95db8 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ A sourcer reads values from a particular source based on a configuration struct'
An environment sourcer reads the env tag and looks up the corresponding value in the process's environment. An expected prefix may be supplied in order to namespace application configuration from the rest of the system. A sourcer instantiated with NewEnvSourcer("APP") will load the env tag fetch_limit from the environment variable APP_FETCH_LIMIT and falling back to the environment variable FETCH_LIMIT.
Test Environment Sourcer
-
A test environment sourcer reads the env tag but looks up the corresponding value from a literal map. This sourcer can be used in unit tests where the full construction of a nacelle [process](https://nacelle.dev/docs/core/process) is too burdensome.
+
A test environment sourcer reads the env tag but looks up the corresponding value from a literal map. This sourcer can be used in unit tests where the full construction of a nacelle process is too burdensome.
Flag Sourcer
A flag sourcer reads the flag tag and looks up the corresponding value attached to the process's command line arguments.