From 2a1d23ac71e199e77ffb33c9889a1379d845db16 Mon Sep 17 00:00:00 2001 From: Jffarge Date: Fri, 29 Nov 2024 02:59:45 +0100 Subject: [PATCH] docs: Replace Twitter with X in documentation (#12) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jean-François Farge Co-authored-by: Jean-François Farge --- content/config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/config.md b/content/config.md index 8031789..9aedf00 100644 --- a/content/config.md +++ b/content/config.md @@ -4,7 +4,7 @@ An app's *config* is everything that is likely to vary between [deploys](./codebase.md) (staging, production, developer environments, etc). This includes: * Resource handles to the database, Memcached, and other [backing services](./backing-services.md) -* Credentials to external services such as Amazon S3 or Twitter +* Credentials to external services such as Amazon S3 or X (formerly Twitter) * Per-deploy values such as the canonical hostname for the deploy Apps sometimes store config as constants in the code. This is a violation of twelve-factor, which requires **strict separation of config from code**. Config varies substantially across deploys, code does not.