Skip to content

Commit

Permalink
fix typo in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mbulat committed Jul 28, 2015
1 parent 0cefc27 commit 5f6fd98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ The balance can also be calculated within a specified date range. Dates can be s

```ruby
>> cash = Plutus::Asset.find_by_name("Cash")
>> cash.balance(:from_date => "2014-01-01", to_date => Date.today)
>> cash.balance(:from_date => "2014-01-01", :to_date => Date.today)
=> #<BigDecimal:103259bb8,'0.2E4',4(12)>
```

Expand All @@ -188,7 +188,7 @@ Each subclass of accounts can report on the total balance of all the accounts of
Again, a date range can be given

```ruby
>> Plutus::Asset.balance(:from_date => "2014-01-01", to_date => Date.today)
>> Plutus::Asset.balance(:from_date => "2014-01-01", :to_date => Date.today)
=> #<BigDecimal:103259bb8,'0.2E4',4(12)>
```

Expand Down

0 comments on commit 5f6fd98

Please sign in to comment.