浏览代码

fix the location of the ending '`'

wang guan 7 年之前
父节点
当前提交
eb52b179ed
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      io.md

+ 1 - 1
io.md

@@ -89,7 +89,7 @@ So far, when we have been writing and using strings, or reading and writing to a
 <class 'str'>
 <class 'str'>
 ```
 ```
 
 
-When data is sent over the Internet, we need to send it in bytes... something your computer easily understands.  The rules for translating Unicode (which is what Python uses when it stores a string) to bytes is called encoding.  A popular encoding to use is UTF-8.  We can read and write in UTF-8 by using a simple keyword argument in our `open function`.
+When data is sent over the Internet, we need to send it in bytes... something your computer easily understands.  The rules for translating Unicode (which is what Python uses when it stores a string) to bytes is called encoding.  A popular encoding to use is UTF-8.  We can read and write in UTF-8 by using a simple keyword argument in our `open` function.
 
 
 <pre><code class="lang-python">{% include "./programs/io_unicode.py" %}</code></pre>
 <pre><code class="lang-python">{% include "./programs/io_unicode.py" %}</code></pre>