lib/sass/version.rb in sass-3.4.23 vs lib/sass/version.rb in sass-3.4.24
- old
+ new
@@ -6,11 +6,11 @@
# Sass not only reports the standard three version numbers,
# but its Git revision hash as well,
# if it was installed from Git.
module Version
# Returns a hash representing the version of Sass.
- # The `:major`, `:minor`, and `:teeny` keys have their respective numbers as Fixnums.
+ # The `:major`, `:minor`, and `:teeny` keys have their respective numbers as Integers.
# The `:name` key has the name of the version.
# The `:string` key contains a human-readable string representation of the version.
# The `:number` key is the major, minor, and teeny keys separated by periods.
# The `:date` key, which is not guaranteed to be defined, is the `DateTime`
# at which this release was cut.
@@ -39,10 +39,10 @@
# :major => 3, :minor => 0, :teeny => -1,
# :prerelease => "beta",
# :prerelease_number => 1
# }
#
- # @return [{Symbol => String/Fixnum}] The version hash
+ # @return [{Symbol => String/Integer}] The version hash
# @comment
# rubocop:disable ClassVars
def version
return @@version if defined?(@@version)