diff --git a/README.md b/README.md
index d64345e..d4386d0 100644
--- a/README.md
+++ b/README.md
@@ -62,6 +62,21 @@ Gyoku.xml("XML" => "key")
* These conventions are also applied to the return value of objects responding to :call
* All other objects are converted to Strings using :to_s
+## Array values
+
+Array items are by default wrapped with the containiner tag, which may be unexpected.
+
+``` ruby
+> Gyoku.xml({languages: [{language: 'ruby'},{language: 'java'}]})
+# => "rubyjava"
+```
+
+You can set the `unwrap` option to remove this behavior.
+
+``` ruby
+> Gyoku.xml({languages: [{language: 'ruby'},{language: 'java'}]}, { unwrap: true})
+# => "rubyjava"
+```
## Special characters