浏览代码

Fix typo (#186)

Christian Clauss 3 年之前
父节点
当前提交
39d34c814a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/guide.rst

+ 1 - 1
docs/guide.rst

@@ -327,7 +327,7 @@ As we can see from the above, the interaction of PyWebIO has two parts: input an
 is blocking, a form will be displayed on the user's web browser when calling input function, the input function will
 not return until the user submits the form. The output function is used to output content to the browser in real time.
 The input and output behavior of PyWebIO is consistent with the console program. That's why we say PyWebIO turning the
-browser into a "rich text terminal". So you can write PyWebIO applications in script programing way.
+browser into a "rich text terminal". So you can write PyWebIO applications in script programming way.
 
 In addition, PyWebIO also supports event callbacks: PyWebIO allows you to output some buttons and bind callbacks to them.
 The provided callback function will be executed when the button is clicked.