Fix JSON issue in example block

This commit is contained in:
Kevin Sawicki 2017-05-18 11:28:10 -07:00
parent 97160ffa63
commit 73b49f0dfe

View file

@ -8,12 +8,16 @@
## Example ## Example
Below is an example of some of the additional options that may be set which
may be different on each platform.
```javascript ```javascript
name: 'Zebra_LP2844', {
description: 'Zebra LP2844', name: 'Zebra_LP2844',
status: 3, description: 'Zebra LP2844',
isDefault: false, status: 3,
options: { isDefault: false,
options: {
copies: '1', copies: '1',
'device-uri': 'usb://Zebra/LP2844?location=14200000', 'device-uri': 'usb://Zebra/LP2844?location=14200000',
finishings: '3', finishings: '3',
@ -35,6 +39,6 @@ options: {
'printer-type': '36932', 'printer-type': '36932',
'printer-uri-supported': 'ipp://localhost/printers/Zebra_LP2844', 'printer-uri-supported': 'ipp://localhost/printers/Zebra_LP2844',
system_driverinfo: 'Z' system_driverinfo: 'Z'
}
} }
}]
``` ```