readme: make the binding.gyp file be valid JSON

This commit is contained in:
Nathan Rajlich 2012-03-27 15:35:46 -07:00
parent 45f9540e3a
commit 2e55e513cc

View file

@ -83,10 +83,10 @@ building a node addon looks like:
``` json
{
'targets': [
"targets": [
{
'target_name': 'binding',
'sources': [ 'src/binding.cc' ]
"target_name": "binding",
"sources": [ "src/binding.cc" ]
}
]
}