[RESOLVED] config.lua beginner problem. line expected to close

Guys, I’m following this link (http://www.youtube.com/watch?v=XENfw2zMIsw) to create retina-friendly graphics, but I am stumped at step 1: editing the config.lua file.

I have this in config.lua:

application =
{
content =
{
width = 320,
height = 480,
scale = “letterbox” – zoom to screen dimensions (may add extra space at top or sides)

imageSuffix =
{
["@2x"] = 2,
}
},

}

It says:
Syntax error: /Users/glaw/Desktop/projects/corona/TimeAnimation/config.lua:11: ‘}’ expected (to close ‘{’ at line 6) near ‘imageSuffix’

I don’t get this, am I going crazy? I thought I closed everything up nicely.
Any help would be appreciated!
Thanks. [import]uid: 146743 topic_id: 26383 reply_id: 326383[/import]

looks like you’re missing a comma at the end of your scale= line. Should be

[lua]scale = “letterbox”, – zoom to screen dimensions (may add extra space at top or sides)[/lua] [import]uid: 44647 topic_id: 26383 reply_id: 106968[/import]

no more error - thanks for that!!
:smiley: [import]uid: 146743 topic_id: 26383 reply_id: 106969[/import]