diff --git a/doc-src/content/reference/compass/reset.haml b/doc-src/content/reference/compass/reset.haml
index 913707f6..af110e49 100644
--- a/doc-src/content/reference/compass/reset.haml
+++ b/doc-src/content/reference/compass/reset.haml
@@ -11,4 +11,11 @@ classnames:
meta_description: Adds a CSS Reset into your stylesheet.
---
- render 'reference' do
- This module applies the global reset to your stylesheet by simply importing it.
+ :markdown
+ This module applies the [global reset](/docs/reference/compass/reset/utilities/#mixin-global-reset)
+ to your stylesheet by simply importing it.
+
+ **Note:** This module will place styles into your stylesheet by importing it. This
+ is not the standard behavior of a compass module but it optimizes the common use case.
+ If you want to control the reset, please use the mixins defined in the [reset
+ utilities module](/docs/reference/compass/reset/utilities/)
diff --git a/doc-src/content/reference/compass/reset/utilities.haml b/doc-src/content/reference/compass/reset/utilities.haml
new file mode 100644
index 00000000..9ae7a26a
--- /dev/null
+++ b/doc-src/content/reference/compass/reset/utilities.haml
@@ -0,0 +1,17 @@
+---
+title: Compass Reset Utilities
+crumb: Reset Utilities
+framework: compass
+stylesheet: compass/reset/_utilities.scss
+layout: core
+meta_description: Mixins for resetting elements.
+classnames:
+ - reference
+ - core
+ - utilities
+---
+- render 'reference' do
+ :markdown
+ These utilities are used to reset your document. The easiest way to use them
+ is to simply `@import "compass/reset"` which will import this module and apply
+ the appropriate mixins for you.
diff --git a/doc-src/content/reference/compass/utilities/general/reset.haml b/doc-src/content/reference/compass/utilities/general/reset.haml
index 697894d6..87f224de 100644
--- a/doc-src/content/reference/compass/utilities/general/reset.haml
+++ b/doc-src/content/reference/compass/utilities/general/reset.haml
@@ -4,7 +4,7 @@ crumb: Reset
framework: compass
stylesheet: compass/utilities/general/_reset.scss
layout: core
-meta_description: Mixins for resetting elements.
+meta_description: Mixins for resetting elements (old import).
nav_stylesheet: compass/_utilities.scss
classnames:
- reference
@@ -13,4 +13,4 @@ classnames:
---
- render 'reference' do
%p
- Lorem ipsum dolor sit amet.
+ This is a legacy wrapper for the reset/utilities
module.