lib/nanoc/base/source_data/code_snippet.rb in nanoc-4.0.0rc1 vs lib/nanoc/base/source_data/code_snippet.rb in nanoc-4.0.0rc2

- old
+ new

@@ -1,7 +1,7 @@ module Nanoc::Int - # Nanoc::Int::CodeSnippet represent a piece of custom code of a nanoc site. + # Nanoc::Int::CodeSnippet represent a piece of custom code of a Nanoc site. # # @api private class CodeSnippet # A string containing the actual code in this code snippet. # @@ -18,10 +18,10 @@ # @param [String] data The raw source code which will be executed before # compilation # # @param [String] filename The filename corresponding to this code snippet # - # @param [Time, Hash] _params Extra parameters. Ignored by nanoc; it is + # @param [Time, Hash] _params Extra parameters. Ignored by Nanoc; it is # only included for backwards compatibility. def initialize(data, filename, _params = nil) @data = data @filename = filename end