Improve grammar, update as upstream

This commit is contained in:
Plusb Preco 2015-08-31 14:48:47 +09:00
parent 8b6f3dc0aa
commit c67268a74f
19 changed files with 237 additions and 171 deletions

View file

@ -8,11 +8,11 @@ generated file to view the result.
```javascript
var contentTracing = require('content-tracing');
tracing.startRecording('*', tracing.DEFAULT_OPTIONS, function() {
contentTracing.startRecording('*', contentTracing.DEFAULT_OPTIONS, function() {
console.log('Tracing started');
setTimeout(function() {
tracing.stopRecording('', function(path) {
contentTracing.stopRecording('', function(path) {
console.log('Tracing data recorded to ' + path);
});
}, 5000);