Skip to content

Commit

Permalink
Renamed dir lib -> util; typos
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxArt2501 committed Feb 2, 2015
1 parent 80393ed commit 80df2d4
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"node_modules",
"bower_components",
"test",
"tests"
"tests",
"util"
]
}
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions test/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
</head>
<body>
<div id="mocha"></div>
<script src="../lib/expect.js"></script>
<script src="../lib/mocha.js"></script>
<script src="../util/expect.js"></script>
<script src="../util/mocha.js"></script>
<script src="../dist/object-observe.js"></script>
<script>mocha.setup('bdd')</script>
<script src="tests.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion test/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 80df2d4

Please sign in to comment.