Skip to content

Commit

Permalink
fix readme typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mbulat committed Apr 10, 2015
1 parent a49f0e4 commit b477625
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.markdown
Expand Up @@ -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}])

Expand Down

0 comments on commit b477625

Please sign in to comment.