summaryrefslogtreecommitdiff
path: root/testing_and_debugging/slides.org
diff options
context:
space:
mode:
authorJovina2011-08-25 15:53:51 +0530
committerJovina2011-08-25 15:53:51 +0530
commitc20b6416c58959cdf4d3700420516d0eb075b388 (patch)
tree57afbcee8d76b1493b9642e6c2823e5025f5e52c /testing_and_debugging/slides.org
parent1244cd8bb59bd8d36dded024fa49402ca2f047c6 (diff)
downloadst-scripts-c20b6416c58959cdf4d3700420516d0eb075b388.tar.gz
st-scripts-c20b6416c58959cdf4d3700420516d0eb075b388.tar.bz2
st-scripts-c20b6416c58959cdf4d3700420516d0eb075b388.zip
Correction to script & slides of 'testing and debugging' .
Diffstat (limited to 'testing_and_debugging/slides.org')
-rw-r--r--testing_and_debugging/slides.org2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing_and_debugging/slides.org b/testing_and_debugging/slides.org
index cb5f7ff..377d689 100644
--- a/testing_and_debugging/slides.org
+++ b/testing_and_debugging/slides.org
@@ -73,7 +73,7 @@ Spoken tutorial on -
- Edit gcd.py file
#+begin_src python
def gcd(a, b):
- if b == 0:
+ if a % b == 0:
return a
return gcd(b, a%b)