diff --git a/vulcanize/README.md b/vulcanize/README.md
index 8cdf5e5..2939bc8 100644
--- a/vulcanize/README.md
+++ b/vulcanize/README.md
@@ -10,10 +10,8 @@ materials.
- Depends on [cheerio](https://github.com/MatthewMueller/cheerio) and [nopt](https://github.com/isaacs/nopt)
- Give a main input html file with the `--input` or `-i` flags and output file name with the `--output` or `-o` flags.
- Example: `node vulcan.js -i index.html -o build.html`
- - Defaults to `output.html`
+ - Defaults to `vulcanized.html`
- URL paths are adjusted for the new output location automatically (execpt ones set in Javascript)
-- When finished, `index-vulcanized.js` will be placed in the output location
- with the vulcanized imports and scripts included.
## Example
@@ -59,6 +57,7 @@ Running vulcan on `index.html`, and specifying `build.html` as the output:
Will result in `build.html` that appears as so:
```html
+
@@ -75,13 +74,6 @@ Will result in `build.html` that appears as so:
Polymer('x-app');
-```
-
-And an `index-vulcanized.html` file that includes `build.html` as the only import:
-
-```html
-
-
```
@@ -96,6 +88,7 @@ Using the previous example, the output from `node vulcan.js --csp -i index.html
build.html:
```html
+
@@ -106,6 +99,8 @@ build.html:
+
+
```
build.js:
@@ -113,10 +108,3 @@ build.js:
Polymer('x-dep');
Polymer('x-app');
```
-
-index-vulcanized.html:
-```html
-
-
-
-```