From f8ccbc71b0666cc0186cbd81f470a98fef58bcd6 Mon Sep 17 00:00:00 2001 From: Frederick Obeng-Nyarko Date: Fri, 13 Dec 2024 20:59:16 +0000 Subject: [PATCH] Update commandline-injection.md This commit corrects `Tyy` to `Try` --- general/development/policies/security/commandline-injection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/general/development/policies/security/commandline-injection.md b/general/development/policies/security/commandline-injection.md index b6c6f7bc30..8b92081ecc 100644 --- a/general/development/policies/security/commandline-injection.md +++ b/general/development/policies/security/commandline-injection.md @@ -25,7 +25,7 @@ However, when there is no other option, it is the standard approach of cleaning ## What you need to do in your code -- Tyy to avoid using shell commands if at all possible. +- Try to avoid using shell commands if at all possible. - Many utilities are available as PHP libraries. - If you can't avoid shell commands, use `escapeshellcmd` and `escapeshellarg`.