Fixing typos in material imported from THW
authorGreg Wilson <gvwilson@third-bit.com>
Wed, 31 Jul 2013 13:02:01 +0000 (09:02 -0400)
committerW. Trevor King <wking@tremily.us>
Fri, 8 Nov 2013 17:11:41 +0000 (09:11 -0800)
W. Trevor King: I dropped everything from the original e19d4dd except
for the python/testing/Readme.md modification.

Conflicts:
lessons/thw-git/local.md
lessons/thw-git/remote.md
lessons/thw-matplotlib/tutorial.md
lessons/thw-numpy/tutorial.md
lessons/thw-python/data-structures/data_structures.ipynb
lessons/thw-python/data-structures/tutorial.md
lessons/thw-python/flow-control/python_flow_control.ipynb
lessons/thw-shell/tutorial.md

lessons/thw-testing/testing-orig.md

index 8d53b87fd71e4cb0d03b3be67d3b7ab41797d221..b25a8a052f661dd219e5f1106f01f84ed7ee6232 100644 (file)
@@ -50,7 +50,7 @@ answers we are interested in, data we want, etc.
 *Uncertainty Quantification* is the process of asking, "Given that our
 algorithm may not be deterministic, was our execution within acceptable
 error bounds?" This is particularly important for anything which uses
-random numbers, eg Monte Carlo methods.
+random numbers, for example Monte Carlo methods.
 
 # Where are tests?
 
@@ -512,7 +512,7 @@ def fib(n):
 
 # Quality Assurance Exercise
 
-Can you think of other tests to make for the fibonacci function? I promise there 
+Can you think of other tests to make for the Fibonacci function? I promise there 
 are at least two. 
 
 Implement one new test in test_fib.py, run nosetests, and if it fails, implement