From 1dd2563484a89e8102ff2e43baeb66afadd68601 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Mon, 12 Sep 2011 14:56:05 -0700 Subject: [PATCH] Use the default compass images directory in the spriting tutorial --- doc-src/content/help/tutorials/spriting.markdown | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc-src/content/help/tutorials/spriting.markdown b/doc-src/content/help/tutorials/spriting.markdown index 82874aef..5d5b7c1e 100644 --- a/doc-src/content/help/tutorials/spriting.markdown +++ b/doc-src/content/help/tutorials/spriting.markdown @@ -15,10 +15,10 @@ of several convenient ways. For this tutorial, let's imagine that in your project's image folder there are four icons: -* `public/images/icon/new.png` -* `public/images/icon/edit.png` -* `public/images/icon/save.png` -* `public/images/icon/delete.png` +* `images/icon/new.png` +* `images/icon/edit.png` +* `images/icon/save.png` +* `images/icon/delete.png` Each is an icon that is 32px square. @@ -89,7 +89,7 @@ magic, some people are scared by it, and others are curious about how the magic you would like to avoid the magic, you can use compass to generate an import for you. On the command line: - compass sprite "public/images/icon/*.png" + compass sprite "images/icon/*.png" This will create file using your project's preferred syntax, or you can specify the output filename using the `-f` option and the syntax will be inferred from the extension.