@@ -100,7 +100,7 @@ Debuglet.prototype.normalizeConfig_ = function(config) {
100100 config = extend ( { } , defaultConfig , config ) ;
101101
102102 if ( config . keyFilename || config . credentials || config . projectId ) {
103- throw new Error ( 'keyFilename, projectId or credentials should be provided' +
103+ throw new Error ( 'keyFilename, projectId or credentials should be provided' +
104104 ' to the Debug module constructor rather than startAgent' ) ;
105105 }
106106
@@ -151,7 +151,7 @@ Debuglet.prototype.start = function() {
151151 that . emit ( 'initError' , err ) ;
152152 return ;
153153 }
154-
154+
155155 that . v8debug_ = v8debugapi . create ( that . logger_ , that . config_ , jsStats , mapper ) ;
156156
157157 id = id || hash ;
@@ -365,7 +365,7 @@ Debuglet.prototype.scheduleBreakpointFetch_ = function(seconds) {
365365 err ) ;
366366 that . fetcherActive_ = false ;
367367 // We back-off from fetching breakpoints, and try to register again
368- // after a while. Successful registration will restart the breakpoint
368+ // after a while. Successful registration will restart the breakpoint
369369 // fetcher.
370370 that . scheduleRegistration_ (
371371 that . config_ . internal . registerDelayOnFetcherErrorSec ) ;
@@ -538,7 +538,7 @@ Debuglet.prototype.completeBreakpoint_ = function(breakpoint) {
538538
539539 that . logger_ . info ( '\tupdating breakpoint data on server' , breakpoint . id ) ;
540540 that . debugletApi_ . updateBreakpoint (
541- breakpoint , that . debuggee_ , function ( err /*, body*/ ) {
541+ that . debuggee_ , breakpoint , function ( err /*, body*/ ) {
542542 if ( err ) {
543543 that . logger_ . error ( 'Unable to complete breakpoint on server' , err ) ;
544544 } else {
@@ -557,7 +557,7 @@ Debuglet.prototype.rejectBreakpoint_ = function(breakpoint) {
557557 var that = this ;
558558
559559 that . debugletApi_ . updateBreakpoint (
560- breakpoint , that . debuggee_ , function ( err /*, body*/ ) {
560+ that . debuggee_ , breakpoint , function ( err /*, body*/ ) {
561561 if ( err ) {
562562 that . logger_ . error ( 'Unable to complete breakpoint on server' , err ) ;
563563 }
0 commit comments