Commit e5879f77 by Joe Van Dyk

Fix syntax in README

parent 36e10375
...@@ -120,7 +120,7 @@ end ...@@ -120,7 +120,7 @@ end
# complex array # complex array
param! :books_array, Array, required: true do |b| param! :books_array, Array, required: true do |b|
b.param! :title, String, blank: false b.param! :title, String, blank: false
b.param! :author, Hash, required: true, do |a| b.param! :author, Hash, required: true do |a|
a.param! :first_name, String a.param! :first_name, String
a.param! :last_name, String, required: true a.param! :last_name, String, required: true
end end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment