Skip to content

Commit

Permalink
Fix a dumb bug.
Browse files Browse the repository at this point in the history
Closes #264.
  • Loading branch information
nex3 committed Feb 5, 2012
1 parent d5dab66 commit 55cab69
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions doc-src/SASS_CHANGELOG.md
Expand Up @@ -3,6 +3,10 @@
* Table of contents
{:toc}

## 3.1.14 (Unreleased)

* Fix a typo that was causing crashes on Ruby 1.9.

## 3.1.13

* Fix a smattering of subtle bugs that would crop up when using multibyte
Expand Down
2 changes: 1 addition & 1 deletion lib/sass/util.rb
Expand Up @@ -228,7 +228,7 @@ def lcs(x, y, &block)
# @param hash [Hash]
# @return [Array]
def hash_to_a(hash)
return has.to_a unless ruby1_8? || defined?(Test::Unit)
return hash.to_a unless ruby1_8? || defined?(Test::Unit)
return hash.sort_by {|k, v| k}
end

Expand Down

0 comments on commit 55cab69

Please sign in to comment.