From bf6d50bb61acfca136bf1dd79c9a0084712c0eda Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 19 Apr 2023 23:54:51 +0100 Subject: [PATCH] daily-email: fix link --- src/content/daily-email/2023-04-19.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/daily-email/2023-04-19.md b/src/content/daily-email/2023-04-19.md index eb31a588..fa79de28 100644 --- a/src/content/daily-email/2023-04-19.md +++ b/src/content/daily-email/2023-04-19.md @@ -9,7 +9,7 @@ tags: - php --- -For some time, [Drupal's PHP coding standards[(https://www.drupal.org/docs/develop/standards/php/php-coding-standards#s-functions-and-variables) allows for writing variables in either snake-case (e.g. `$my_variable`) or lower camel-case `(e.g. $myVariable)`. +For some time, [Drupal's PHP coding standards](https://www.drupal.org/docs/develop/standards/php/php-coding-standards#s-functions-and-variables) allows for writing variables in either snake-case (e.g. `$my_variable`) or lower camel-case (`e.g. $myVariable`). It originally only allowed for snake-case variable names but once it accepted both, I switched to camel-case as my default.