From b477625a2c7fc53c472835165a5bf09c40f09f13 Mon Sep 17 00:00:00 2001 From: Michael Bulat Date: Fri, 10 Apr 2015 11:12:10 -0400 Subject: [PATCH] fix readme typo --- README.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.markdown b/README.markdown index 813b7d16..79ee78b0 100644 --- a/README.markdown +++ b/README.markdown @@ -83,12 +83,12 @@ Let's assume we're accounting on an [Accrual basis](http://en.wikipedia.org/wiki >> Plutus::Liability.create(:name => "Unearned Revenue") ``` -Next we'll build the entry we want to record. Plutus uses ActiveRecord conventions build the transaction and its associated amounts. +Next we'll build the entry we want to record. Plutus uses ActiveRecord conventions to build the transaction and its associated amounts. entry = Plutus::Entry.new( :description => "Order placed for widgets", :debits => [ - {:account_name => "Cash", :amount => 100.00}], + {:account_name => "Cash", :amount => 100.00}], :credits => [ {:account_name => "Unearned Revenue", :amount => 100.00}])