Skip to content

Commit 0afb67c

Browse files
committed
update read
1 parent bc3b430 commit 0afb67c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ or as ActiveModel Validator (make sure you have 'active_model' in your Gemfile)
8080

8181
# paramters: IBAN, BIC
8282
contact = Bank::Contact.new('DE89 3704 0044 0532 0130 00', 'BYLADEM1203')
83-
contact.iban
84-
contact.bic
85-
contact.to_h
86-
contact.to_a
87-
contact.valid?
83+
contact.iban # <Bank::IBAN...>
84+
contact.bic # <Bank::BIC...>
85+
contact.to_h # {:iban=>"DE89370400440532013000", :bic=>"BYLADEM1203"}
86+
contact.to_a # ["DE89370400440532013000", "BYLADEM1203"]
87+
contact.valid? # true
8888

8989

9090
## Contributing

0 commit comments

Comments
 (0)