소스 검색

Update oop.asciidoc

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

+ 1 - 1
oop.asciidoc

@@ -192,7 +192,7 @@ include::programs/oop_objvar.txt[]
 .How It Works
 
 This is a long example but helps demonstrate the nature of class and object variables. Here,
-`population` belongs to the`Robot` class and hence is a class variable. The `name` variable belongs
+`population` belongs to the `Robot` class and hence is a class variable. The `name` variable belongs
 to the object (it is assigned using `self`) and hence is an object variable.
 
 Thus, we refer to the `population` class variable as `Robot.population` and not as