Index: src/execution.cc |
diff --git a/src/execution.cc b/src/execution.cc |
index cdea005829fb4e1fec14d4402272592cb58138d5..a4bdb3732810196ea91bc09c10371099d15d8028 100644 |
--- a/src/execution.cc |
+++ b/src/execution.cc |
@@ -226,7 +226,7 @@ Handle<Object> Execution::GetFunctionDelegate(Handle<Object> object) { |
// If you return a function from here, it will be called when an |
// attempt is made to call the given object as a function. |
- // If object is a function proxies, get its handler. Iterate if necessary. |
+ // If object is a function proxy, get its handler. Iterate if necessary. |
Object* fun = *object; |
while (fun->IsJSFunctionProxy()) { |
fun = JSFunctionProxy::cast(fun)->call_trap(); |
@@ -250,7 +250,7 @@ Handle<Object> Execution::TryGetFunctionDelegate(Handle<Object> object, |
ASSERT(!object->IsJSFunction()); |
Isolate* isolate = Isolate::Current(); |
- // If object is a function proxies, get its handler. Iterate if necessary. |
+ // If object is a function proxy, get its handler. Iterate if necessary. |
Object* fun = *object; |
while (fun->IsJSFunctionProxy()) { |
fun = JSFunctionProxy::cast(fun)->call_trap(); |