Skip to content

Commit

Permalink
Fix Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
jodastephen committed Aug 12, 2013
1 parent 508f958 commit 08d6dfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/joda/money/Money.java
Expand Up @@ -324,8 +324,8 @@ public static Money total(CurrencyUnit currency, Iterable<Money> monies) {
* The amount must match the regular expression {@code [+-]?[0-9]*[.]?[0-9]*}.
* This matches the output from {@link #toString()}.
* <p>
* For example, {@code of("USD 25")} creates the instance {@code USD 25.00}
* while {@code of("USD 25.95")} creates the instance {@code USD 25.95}.
* For example, {@code parse("USD 25")} creates the instance {@code USD 25.00}
* while {@code parse("USD 25.95")} creates the instance {@code USD 25.95}.
*
* @param moneyStr the money string to parse, not null
* @return the parsed instance, never null
Expand Down

0 comments on commit 08d6dfd

Please sign in to comment.