소스 검색

Update problem_solving.asciidoc

myd7349 10 년 전
부모
커밋
186fa6733b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      problem_solving.asciidoc

+ 1 - 1
problem_solving.asciidoc

@@ -227,7 +227,7 @@ a `-v` option to make your program become more talkative or a `-q` to make it _q
 
 Another possible enhancement would be to allow extra files and directories to be passed to the
 script at the command line. We can get these names from the `sys.argv` list and we can add them to
-our `source` list using the `extend`method provided by the `list` class.
+our `source` list using the `extend` method provided by the `list` class.
 
 The most important refinement would be to not use the `os.system` way of creating archives and
 instead using the http://docs.python.org/2/library/zipfile.html[zipfile] or