Reputation: 135
I can't figure out why this code trips up the rails YAML parser.
sections:
[
{title: "Journal Entry Testing",
procedures:
["Select a sample of journal entries prepared during the year and determine if they were prepared correctly and approved.”]
}
]
Upvotes: 1
Views: 107
Reputation: 160181
Because of the non-matching double-quotes, enlarged to highlight the difference:
See how the ending quotes are "smart" quotes?
With that fixed, it passes at http://yamllint.com/, and gets turned into actual YAML.
Upvotes: 6