From 623012b5c880c48ce4dddb48bb6d437626afbb2b Mon Sep 17 00:00:00 2001 From: Rachit Singh Date: Sun, 13 Jul 2014 21:27:40 -0700 Subject: [PATCH] Fixed 2 typos (1 important) Fixed a type causing a code tag not to be formatted correctly, and fixed the answer of Example 1.2 to be 'b' instead of 'a' (which is the text's intent, I believe) --- tutorials/scope_resolution_legb_rule.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tutorials/scope_resolution_legb_rule.ipynb b/tutorials/scope_resolution_legb_rule.ipynb index fa6bd76..a47fd1d 100644 --- a/tutorials/scope_resolution_legb_rule.ipynb +++ b/tutorials/scope_resolution_legb_rule.ipynb @@ -253,7 +253,7 @@ "source": [ "### Tip:\n", "If we want to print out the dictionary mapping of the global and local variables, we can use the\n", - "the functions `global()` and `local()" + "the functions `global()` and `local()`" ] }, { @@ -951,7 +951,7 @@ "cell_type": "code", "collapsed": false, "input": [ - "print('Example 1.2:', chr(int('01100001',2)))" + "print('Example 1.2:', chr(int('01100010',2)))" ], "language": "python", "metadata": {}, @@ -1145,4 +1145,4 @@ "metadata": {} } ] -} \ No newline at end of file +}