소스 검색

find the missing ')' in modules.md

wang guan 7 년 전
부모
커밋
31735e02e9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      modules.md

+ 1 - 1
modules.md

@@ -26,7 +26,7 @@ If it was not a compiled module i.e. a module written in Python, then the Python
 
 The `argv` variable in the `sys` module is accessed using the dotted notation i.e. `sys.argv`. It clearly indicates that this name is part of the `sys` module. Another advantage of this approach is that the name does not clash with any `argv` variable used in your program.
 
-The `sys.argv` variable is a *list* of strings (lists are explained in detail in a [later chapter](./data_structures.md#data-structures). Specifically, the `sys.argv` contains the list of *command line arguments* i.e. the arguments passed to your program using the command line.
+The `sys.argv` variable is a *list* of strings (lists are explained in detail in a [later chapter](./data_structures.md#data-structures)). Specifically, the `sys.argv` contains the list of *command line arguments* i.e. the arguments passed to your program using the command line.
 
 If you are using an IDE to write and run these programs, look for a way to specify command line arguments to the program in the menus.