From c3b3c8b821b2c2350a76906611514fe950323aab Mon Sep 17 00:00:00 2001 From: John YS Date: Thu, 5 Dec 2024 17:33:43 -0500 Subject: [PATCH] Update README.md Fix typo in readme: unqoted -> unquoted --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 857de7f..aeca129 100644 --- a/README.md +++ b/README.md @@ -213,7 +213,7 @@ DATABASE_URL="postgres://$(whoami)@localhost/my_database" ### Variable Substitution -You need to add the value of another variable in one of your variables? You can reference the variable with `${VAR}` or often just `$VAR` in unqoted or double-quoted values. +You need to add the value of another variable in one of your variables? You can reference the variable with `${VAR}` or often just `$VAR` in unquoted or double-quoted values. ```shell DATABASE_URL="postgres://${USER}@localhost/my_database"