diff --git a/lib/puppet/pops/semantic_error.rb b/lib/puppet/pops/semantic_error.rb index 3cfa120ba..58026025f 100644 --- a/lib/puppet/pops/semantic_error.rb +++ b/lib/puppet/pops/semantic_error.rb @@ -1,17 +1,17 @@ # Error that is used to raise an Issue. See {Puppet::Pops::Issues}. # class Puppet::Pops::SemanticError < RuntimeError attr_accessor :issue attr_accessor :semantic attr_accessor :options # @param issue [Puppet::Pops::Issues::Issue] the issue describing the severity and message # @param semantic [Puppet::Pops::Model::Locatable, nil] the expression causing the failure, or nil if unknown - # @param options [Hash] an options hash with Symbol to valu mapping - these are the arguments to the issue + # @param options [Hash] an options hash with Symbol to value mapping - these are the arguments to the issue # def initialize(issue, semantic=nil, options = {}) @issue = issue @semantic = semantic @options = options end end