From 80df2d402b41ae6461d17c52b0b4a7feef2aa7f3 Mon Sep 17 00:00:00 2001 From: MaxArt2501 Date: Mon, 2 Feb 2015 15:19:00 +0100 Subject: [PATCH] Renamed dir lib -> util; typos --- bower.json | 3 ++- readme.md | 2 +- test/index.html | 4 ++-- test/tests.js | 2 +- {lib => util}/expect.js | 0 {lib => util}/mocha.js | 0 6 files changed, 6 insertions(+), 5 deletions(-) rename {lib => util}/expect.js (100%) rename {lib => util}/mocha.js (100%) diff --git a/bower.json b/bower.json index c4c0ebb..6f7e135 100644 --- a/bower.json +++ b/bower.json @@ -21,6 +21,7 @@ "node_modules", "bower_components", "test", - "tests" + "tests", + "util" ] } diff --git a/readme.md b/readme.md index 14cdc76..93e82f2 100644 --- a/readme.md +++ b/readme.md @@ -1,7 +1,7 @@ Object.observe polyfill ======================= -`Object.observe` polyfill based on [EcmaScript 7 spec](http://arv.github.io/ecmascript-object-observe/). Read the [documentation](doc/index.md) for more detailed informations. Check the [changelog](changelog.md) for see what's changed. +`Object.observe` polyfill based on [EcmaScript 7 spec](http://arv.github.io/ecmascript-object-observe/). Read the [documentation](doc/index.md) for more detailed informations. Check the [changelog](changelog.md) to see what's changed. ## Installation diff --git a/test/index.html b/test/index.html index 7db33c0..f533fc7 100644 --- a/test/index.html +++ b/test/index.html @@ -7,8 +7,8 @@
- - + + diff --git a/test/tests.js b/test/tests.js index a28f036..731bdd2 100644 --- a/test/tests.js +++ b/test/tests.js @@ -2,7 +2,7 @@ if (typeof define === "function" && define.amd) define(["expect", "object-observe"], tests); else if (typeof exports === "object") - tests(require("../lib/expect.js"), require("../dist/object-observe.js")); + tests(require("../util/expect.js"), require("../dist/object-observe.js")); else tests(root.expect, root.Object.observe); })(this, function(expect) { "use strict"; diff --git a/lib/expect.js b/util/expect.js similarity index 100% rename from lib/expect.js rename to util/expect.js diff --git a/lib/mocha.js b/util/mocha.js similarity index 100% rename from lib/mocha.js rename to util/mocha.js