소스 검색

Merge pull request #19 from archerImagine/master

The description and function name in code were not matching.
Swaroop C H 10 년 전
부모
커밋
92b172e322
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      oop.asciidoc

+ 1 - 1
oop.asciidoc

@@ -155,7 +155,7 @@ Most importantly, notice that we do not explicitly call the `__init__` method bu
 arguments in the parentheses following the class name when creating a new instance of the
 class. This is the special significance of this method.
 
-Now, we are able to use the `self.name` field in our methods which is demonstrated in the `sayHi`
+Now, we are able to use the `self.name` field in our methods which is demonstrated in the `say_hi`
 method.
 
 [[class_obj_vars]]