@@ -11,7 +11,7 @@ class MemError < Error
1111 # Initializes a new instance of MemError.
1212 #
1313 # @private
14- def initialize #:nodoc:
14+ def initialize # :nodoc:
1515 super ( 'Could not allocate enough memory to perform this request' )
1616 end
1717 end
@@ -23,7 +23,7 @@ class DataError < Error
2323 #
2424 # @param message [String] Exception message (overrides the default).
2525 # @private
26- def initialize ( message = nil ) #:nodoc:
26+ def initialize ( message = nil ) # :nodoc:
2727 super (
2828 message ||
2929 'Data integrity error detected (mismatch between stored and computed CRCs, ' \
@@ -38,7 +38,7 @@ class MagicDataError < DataError
3838 # Initializes a new instance of MagicDataError.
3939 #
4040 # @private
41- def initialize #:nodoc:
41+ def initialize # :nodoc:
4242 super ( 'Compressed data does not start with the correct magic bytes (\'BZh\')' )
4343 end
4444 end
@@ -48,7 +48,7 @@ class ConfigError < DataError
4848 # Initializes a new instance of ConfigError.
4949 #
5050 # @private
51- def initialize #:nodoc:
51+ def initialize # :nodoc:
5252 super ( 'libbz2 has been improperly compiled on your platform' )
5353 end
5454 end
@@ -59,7 +59,7 @@ class UnexpectedError < Error
5959 #
6060 # @param error_code [Integer] The error_code reported by libbz2.
6161 # @private
62- def initialize ( error_code ) #:nodoc:
62+ def initialize ( error_code ) # :nodoc:
6363 super ( "An unexpected error was detected (error code: #{ error_code } )" )
6464 end
6565 end
0 commit comments