Skip to content

Commit

Permalink
Update lib/compass/sass_extensions/functions/math.rb
Browse files Browse the repository at this point in the history
`Sass::Script::Functions.declare :pi, []` was declared twice. I believe this should be declaring e, as it's right after e.
  • Loading branch information
Snugug committed Dec 31, 2012
1 parent 192107c commit cc76b59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/compass/sass_extensions/functions/math.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def tan(number)
def e()
Sass::Script::Number.new(Math::E)
end
Sass::Script::Functions.declare :pi, []
Sass::Script::Functions.declare :e, []

def logarithm(number, base = e )
assert_type number, :Number
Expand Down

0 comments on commit cc76b59

Please sign in to comment.