Skip to content

Instantly share code, notes, and snippets.

@mdub
Created January 2, 2012 23:21
Show Gist options
  • Select an option

  • Save mdub/1552586 to your computer and use it in GitHub Desktop.

Select an option

Save mdub/1552586 to your computer and use it in GitHub Desktop.
# this is fine
params = {
"mode" => "update"
"people" => {
"jackie"=> "Jackie Watkins"
"max"=> "Max Edwards"
}
}
# this is not
params = {
"people" => {
"jackie"=> "Jackie Watkins"
"max"=> "Max Edwards"
},
"mode" => "update"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment