summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPuneeth Chaganti2010-05-15 10:47:35 +0530
committerPuneeth Chaganti2010-05-15 10:47:35 +0530
commit1199e1d43a8b23144b516a7425c20b8bbf36723d (patch)
treee8de26fe1fcfb9c40ce5464e960b29081bd57402
parent6bb546958c755dfe7f5301213764c441ccd1f991 (diff)
downloadst-scripts-1199e1d43a8b23144b516a7425c20b8bbf36723d.tar.gz
st-scripts-1199e1d43a8b23144b516a7425c20b8bbf36723d.tar.bz2
st-scripts-1199e1d43a8b23144b516a7425c20b8bbf36723d.zip
A minor edit to see if commits are working.
-rw-r--r--functions_.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions_.txt b/functions_.txt
index b0d8e67..7d1539e 100644
--- a/functions_.txt
+++ b/functions_.txt
@@ -9,5 +9,5 @@ Lets look at how to write functions by writing one out .
We have given the function the name signum . Essentially what it does is that based on whether the no is 0 , negative or positive , it returns 0 , -1 and +1 respectively . In this case it recieves value of the no in variable r .
-In the beginning of the function you can see a triple quoted string . This is called a docstring . You can write some documentation related to your function. In this you can have the function parameters and what it returns . A python function returns a value by using the keyword return .
+In the beginning of the function you can see a triple quoted string . This is called a docstring. You can write some documentation related to your function. In this you can have the function parameters and what it returns. A python function returns a value by using the keyword return.