Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Anya Stettler committed Mar 7, 2014
1 parent c9d05aa commit 8dd82ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GetTaxTest.rb
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,10 @@
getTaxResult["Messages"].each { |message| puts message["Summary"] }
else
puts "Document Code: " + getTaxResult["DocCode"] + " Total Tax: " + getTaxResult["TotalTax"].to_s
result["TaxLines"].each do |taxLine|
getTaxResult["TaxLines"].each do |taxLine|
puts " " + "Line Number: " + taxLine["LineNo"] + " Line Tax: " + taxLine["Tax"].to_s
taxLine["TaxDetails"].each do |taxDetail|
puts " " + "Jurisdiction: " + taxDetail["JurisName"] + " Tax: " + taxDetail["Tax"].to_s
end
end
end
end

0 comments on commit 8dd82ce

Please sign in to comment.