From 90323c978a3bbd7f5caaec7c5c5ef3b7a88daae4 Mon Sep 17 00:00:00 2001 From: Leo Horie Date: Sun, 12 Oct 2014 21:53:50 -0400 Subject: [PATCH] fixing docs --- docs/optimizing-performance.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/optimizing-performance.md b/docs/optimizing-performance.md index bc640f97..c6a214a6 100644 --- a/docs/optimizing-performance.md +++ b/docs/optimizing-performance.md @@ -49,7 +49,7 @@ npm install -g sweet.js To compile a file, type: ``` -sjs --module /mithril.compile.sjs --output .js .js +sjs --module /template-compiler.sjs --output .js .js ``` --- @@ -84,7 +84,7 @@ Once installed, create two files in the root of your project, `package.json` and module.exports = function(grunt) { grunt.initConfig({ sweetjs: { - modules: ["mithril.compile.sjs"], + modules: ["template-compiler.sjs"], compile: {expand: true, cwd: ".", src: "**/*.js", dest: "destination-folder-goes-here/"} } });