From 5e70868fd0c005dc2c43bea15ca6e93da0b68741 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Fri, 4 Dec 2015 19:23:13 +0800 Subject: [PATCH] isDestroy => isDestroyed --- native_mate/object_template_builder.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native_mate/object_template_builder.cc b/native_mate/object_template_builder.cc index b302a01634e0..5bf2cfb193c0 100644 --- a/native_mate/object_template_builder.cc +++ b/native_mate/object_template_builder.cc @@ -34,7 +34,7 @@ ObjectTemplateBuilder& ObjectTemplateBuilder::SetPropertyImpl( ObjectTemplateBuilder& ObjectTemplateBuilder::MakeDestroyable() { SetMethod("destroy", base::Bind(internal::Destroyable::Destroy)); - SetMethod("isDestroy", base::Bind(internal::Destroyable::IsDestroyed)); + SetMethod("isDestroyed", base::Bind(internal::Destroyable::IsDestroyed)); return *this; }