diff --git a/Docs/En/Core.md b/Docs/En/Core.md index 8ddc83e..28c20c2 100644 --- a/Docs/En/Core.md +++ b/Docs/En/Core.md @@ -1,7 +1,7 @@ Atom Core ========= -* title: ore +* title: Core * group: core @@ -18,8 +18,8 @@ Checks if `fn` is function If `key` is not object - returns object, where `key` is single key & `value` is value of this key. Else - returns `key` - atom.core.objectize( 'test', 'foo' ); // { test: 'foo' ) - atom.core.objectize({ test: 'foo' }); // { test: 'foo' ) + atom.core.objectize( 'test', 'foo' ); // { test: 'foo' } + atom.core.objectize({ test: 'foo' }); // { test: 'foo' } Can be used, when you what to be sure, you works with object: diff --git a/Docs/En/Declare/ImagePreloader.md b/Docs/En/Declare/ImagePreloader.md index 0e5d0a2..7d96a2d 100644 --- a/Docs/En/Declare/ImagePreloader.md +++ b/Docs/En/Declare/ImagePreloader.md @@ -72,8 +72,8 @@ Checks, if image with name `name` was loaded. Returns image with name `name`, if exists, or throws `Error` otherwise - imagePreloader.exists( 'unit-traktor' ); // returns image - imagePreloader.exists( 'unit-diablo' ); // throws Error + imagePreloader.get( 'unit-traktor' ); // returns image + imagePreloader.get( 'unit-diablo' ); // throws Error ## atom.ImagePreloader.run