diff --git a/README.md b/README.md
index 05b9478..8423a93 100644
--- a/README.md
+++ b/README.md
@@ -62,11 +62,13 @@ Or install it yourself as:
```ruby
require "microformats2"
-html = '
'
-collection = Microformats.parse(html)
-collection.card.first.name.first.value #=> "Jessica Lynn Suttles"
+source = ''
+collection = Microformats.parse(source)
+collection.cards.first.names.first.to_s #=> "Jessica Lynn Suttles"
+collection.card.name.to_s #=> "Jessica Lynn Suttles"
```
+* `source` can be a URL, filepath, or HTML
## Authors