lib/nanoc/base/errors.rb in nanoc-4.0.0rc1 vs lib/nanoc/base/errors.rb in nanoc-4.0.0rc2
- old
+ new
@@ -1,13 +1,13 @@
module Nanoc::Int
- # Module that contains all nanoc-specific errors.
+ # Module that contains all Nanoc-specific errors.
#
# @api private
module Errors
Generic = ::Nanoc::Error
- # Generic trivial error. Superclass for all nanoc-specific errors that are
+ # Generic trivial error. Superclass for all Nanoc-specific errors that are
# considered "trivial", i.e. errors that do not require a full crash report.
class GenericTrivial < Generic
end
# Error that is raised when a site is loaded that uses a data source with
@@ -64,10 +64,10 @@
# Error that is raised when no rules file can be found in the current
# working directory.
class NoRulesFileFound < Generic
def initialize
- super('This site does not have a rules file, which is required for nanoc sites.')
+ super('This site does not have a rules file, which is required for Nanoc sites.')
end
end
# Error that is raised when no compilation rule that can be applied to the
# current item can be found.