fixed example readme

This commit is contained in:
Tobias Koppers 2012-08-06 22:25:48 +02:00
parent 8f603e5f64
commit 1135c862b7
2 changed files with 8 additions and 0 deletions

View File

@ -16,6 +16,8 @@ require([
);
```
# amd.js
``` javascript
// AMD Module Format
define(
@ -30,6 +32,8 @@ define(
);
```
# commonjs.js
``` javascript
// CommonJs Module Format
module.exports = 123;

View File

@ -4,10 +4,14 @@
{{example.js}}
```
# amd.js
``` javascript
{{amd.js}}
```
# commonjs.js
``` javascript
{{commonjs.js}}
```