Skip to content

Commit

Permalink
use single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
manumaticx committed Nov 1, 2016
1 parent 349616f commit 9a973fb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ capture.on('data', function(data) {
Respond to an HTTP request by piping the stream returned by `capture()`:

```js
var fs = require("fs");
var os = require("os");
var http = require("http");
var fs = require('fs');
var os = require('os');
var http = require('http');
var port = 8080;

var av = require("tessel-av");
var av = require('tessel-av');
var camera = new av.Camera({
width: 320,
height: 240,
Expand All @@ -103,7 +103,7 @@ var os = require('os');
var path = require('path');
var port = 8888;

var av = require("tessel-av");
var av = require('tessel-av');
var camera = new av.Camera();

server.listen(port, function () {
Expand Down

0 comments on commit 9a973fb

Please sign in to comment.