Skip to content

Commit

Permalink
Fix misquoted String literal in README.
Browse files Browse the repository at this point in the history
  • Loading branch information
barend-xebia committed May 29, 2013
1 parent f2a5ca9 commit 906fef4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ An immutable value type for IBAN numbers.
IBAN iban = IBAN.valueOf( "NL91ABNA0417164300" );

// Input may be formatted.
iban = IBAN.valueOf( ""BE68 5390 0754 7034"" );
iban = IBAN.valueOf( "BE68 5390 0754 7034" );

// The valueOf() method returns null if its argument is null.
iban.valueOf( null );
Expand Down

0 comments on commit 906fef4

Please sign in to comment.