소스 검색

Cosmetic newline after method comment in JSObjectProxy >> lookupProperty:

Nicolas Petton 11 년 전
부모
커밋
c1aeb3962d
2개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      js/Kernel-Objects.js
  2. 2 1
      st/Kernel-Objects.st

+ 1 - 1
js/Kernel-Objects.js

@@ -2415,7 +2415,7 @@ return smalltalk.withContext(function($ctx1) {
 return aString in self._jsObject() ? aString : nil;
 return self}, function($ctx1) {$ctx1.fill(self,"lookupProperty:",{aString:aString},smalltalk.JSObjectProxy)})},
 args: ["aString"],
-source: "lookupProperty: aString\x0a\x09\x22Looks up a property in JS object.\x0a\x09Return the property if it is present, or nil if it is not present.\x22\x0a\x09<return aString in self._jsObject() ? aString : nil>",
+source: "lookupProperty: aString\x0a\x09\x22Looks up a property in JS object.\x0a\x09Answer the property if it is present, or nil if it is not present.\x22\x0a\x09\x0a\x09<return aString in self._jsObject() ? aString : nil>",
 messageSends: [],
 referencedClasses: []
 }),

+ 2 - 1
st/Kernel-Objects.st

@@ -718,7 +718,8 @@ jsObject: aJSObject
 
 lookupProperty: aString
 	"Looks up a property in JS object.
-	Return the property if it is present, or nil if it is not present."
+	Answer the property if it is present, or nil if it is not present."
+	
 	<return aString in self._jsObject() ? aString : nil>
 !