summaryrefslogtreecommitdiff
path: root/Examples/FunctionReturnValue
diff options
context:
space:
mode:
authorJasperVanEck <jaspergkurtz@gmail.com>2013-11-29 13:02:30 +0100
committerJasperVanEck <jaspergkurtz@gmail.com>2013-11-29 13:02:30 +0100
commit503651a6fe27b5925d77b1c5712a620be35a5718 (patch)
treefa256baaafddbdf06fa3c67fdecda48c319f95f8 /Examples/FunctionReturnValue
parent71aa5265c41ae9d812d0e73b4deaa1c760985316 (diff)
Comment update
Diffstat (limited to 'Examples/FunctionReturnValue')
-rw-r--r--Examples/FunctionReturnValue/functionreturnvalue.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/Examples/FunctionReturnValue/functionreturnvalue.php b/Examples/FunctionReturnValue/functionreturnvalue.php
index ba8f52b..1626e19 100644
--- a/Examples/FunctionReturnValue/functionreturnvalue.php
+++ b/Examples/FunctionReturnValue/functionreturnvalue.php
@@ -1,13 +1,12 @@
<?php
-/*
+/**
* functionreturnvalue.php
* @author Jasper van Eck<jasper.vaneck@copernica.com>
*
* An example file to show the working of a function call with a return value.
*/
-/*
+/**
* Run a function which returns a value.
*/
-echo "Function which returns a value; my_return_value_function()\n"
echo my_return_value_function() . "\n";