From e38e16494173ae1dee589e246023e04149357f8c Mon Sep 17 00:00:00 2001 From: James Moore Date: Wed, 4 Oct 2000 22:49:08 +0000 Subject: [PATCH] Fixing typo. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@33392 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/operators.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/operators.xml b/language/operators.xml index 1291152ed9..6f077f3f75 100644 --- a/language/operators.xml +++ b/language/operators.xml @@ -234,7 +234,7 @@ $b .= "There!"; // sets $b to "Hello There!", just like $b = $b . "There!"; - Another conditional operator is the "?:" (or trinary) operator, + Another conditional operator is the "?:" (or ternary) operator, which operates as in C and many other languages.