From 1eab01ad1fc7ffe7abfea66bb5d4be57466e7884 Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Wed, 31 Mar 2021 04:46:32 +1300 Subject: [PATCH] Fix comment typo --- Examples/php/pointer/runme.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/php/pointer/runme.php b/Examples/php/pointer/runme.php index a6059f18f..824c26dd4 100644 --- a/Examples/php/pointer/runme.php +++ b/Examples/php/pointer/runme.php @@ -14,7 +14,7 @@ print " b = $b\n"; print " c = $c\n"; - # Call the add() function wuth some pointers + # Call the add() function with some pointers add($a,$b,$c); print " $a + $b = $c\n";