diff --git a/README.md b/README.md index 0859f74..0f686c3 100755 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ output: this.someproperty={}; } - //write a cloning strategy by for obj.constructor.name (function name that used to create the object) + //write a cloning strategy by obj.constructor.name (function name that used to create the object) ce.howtoclone.MyObject= function(obj) { var cloned=new obj.constructor(); //cloned.someproperty=obj.someproperty;