From 8b3e4ea76d6008511f7032746c2a61913801c3bc Mon Sep 17 00:00:00 2001 From: Freddy Grande Date: Tue, 25 Oct 2022 19:52:40 +1000 Subject: [PATCH] Fixing typo (#15882) "proceeded" used instead of "preceded" --- compose/env-file.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose/env-file.md b/compose/env-file.md index 599411742e..8c08421d67 100644 --- a/compose/env-file.md +++ b/compose/env-file.md @@ -14,7 +14,7 @@ The following syntax rules apply to environment files: - `VAR="VAL"` -> `VAL` - `VAR='VAL'` -> `VAL` - Lines beginning with `#` are processed as comments and ignored. -- Inline comments for unquoted values must be proceeded with a space. +- Inline comments for unquoted values must be preceded with a space. - `VAR=VAL # comment` -> `VAL` - `VAR=VAL# not a comment` -> `VAL# not a comment` - Inline comments for quoted values must follow the closing quote.