typo fix
This commit is contained in:
parent
30884601c6
commit
63f2f02da9
13
README.md
13
README.md
|
@ -85,6 +85,7 @@ It will generate a bare bones manager that passes the tests,
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary>manager.js</summary>
|
<summary>manager.js</summary>
|
||||||
|
|
||||||
```js
|
```js
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
@ -163,13 +164,14 @@ var manager = {};
|
||||||
//*/
|
//*/
|
||||||
|
|
||||||
return manager;
|
return manager;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
```
|
||||||
|
|
||||||
````
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary>manager.test.js</summary>
|
<summary>manager.test.js</summary>
|
||||||
|
|
||||||
```js
|
```js
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
@ -186,7 +188,10 @@ Tester.test(Manager, config)
|
||||||
console.info();
|
console.info();
|
||||||
console.info("Optional Feature Support:");
|
console.info("Optional Feature Support:");
|
||||||
features.forEach(function(feature) {
|
features.forEach(function(feature) {
|
||||||
console.info(feature.supported ? "✓ (YES)" : "✘ (NO) ", feature.description);
|
console.info(
|
||||||
|
feature.supported ? "✓ (YES)" : "✘ (NO) ",
|
||||||
|
feature.description
|
||||||
|
);
|
||||||
});
|
});
|
||||||
console.info();
|
console.info();
|
||||||
})
|
})
|
||||||
|
@ -196,7 +201,7 @@ Tester.test(Manager, config)
|
||||||
console.error();
|
console.error();
|
||||||
console.error("That's all I know.");
|
console.error("That's all I know.");
|
||||||
});
|
});
|
||||||
````
|
```
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue