From 15e9eef9c0b4470d44ddd6f7f8b5a60452f5f7e5 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Mon, 21 Feb 2011 16:45:27 -0800 Subject: [PATCH] deprecate the comma-delimted-list mixin in favor of the more general delimited-list mixin. --- .../stylesheets/compass/typography/lists/_inline-list.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frameworks/compass/stylesheets/compass/typography/lists/_inline-list.scss b/frameworks/compass/stylesheets/compass/typography/lists/_inline-list.scss index 1b5fef6e..caff6fd6 100644 --- a/frameworks/compass/stylesheets/compass/typography/lists/_inline-list.scss +++ b/frameworks/compass/stylesheets/compass/typography/lists/_inline-list.scss @@ -39,5 +39,6 @@ // See [delimited-list](#mixin-delimited-list) // @deprecated @mixin comma-delimited-list { - @include delimited-list + @warn "comma-delimited-list is deprecated. Please use delimited-list instead."; + @include delimited-list; }