summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam <adam@adambard.com>2013-06-28 12:59:45 -0700
committerAdam <adam@adambard.com>2013-06-28 12:59:45 -0700
commit2e805c8c020719da0aab40987b7c064c864db9c8 (patch)
tree94cd1281a04708094e1084d923119912d6001eab
parentb34908e050507ac4e582f8cdc5b314027274c3e4 (diff)
Updates
-rw-r--r--c.html.markdown2
-rw-r--r--python.html.markdown2
2 files changed, 3 insertions, 1 deletions
diff --git a/c.html.markdown b/c.html.markdown
index 4ac05299..73b60f75 100644
--- a/c.html.markdown
+++ b/c.html.markdown
@@ -333,4 +333,6 @@ int area(rect r){
Best to find yourself a copy of [K&R, aka "The C Programming Language"](https://en.wikipedia.org/wiki/The_C_Programming_Language)
+Another good resource is [Learn C the hard way](http://c.learncodethehardway.org/book/)
+
Other than that, Google is your friend.
diff --git a/python.html.markdown b/python.html.markdown
index 982333ca..39a2349d 100644
--- a/python.html.markdown
+++ b/python.html.markdown
@@ -395,7 +395,7 @@ print j.say("hello") #prints out "Joel: hello"
i.get_species() #=> "H. sapiens"
# Change the shared attribute
-i.species = "H. neanderthalensis"
+Human.species = "H. neanderthalensis"
i.get_species() #=> "H. neanderthalensis"
j.get_species() #=> "H. neanderthalensis"