Skip to content

Commit

Permalink
Fix issue 722 open string at line 512 (#723)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdreid authored and addyosmani committed Dec 11, 2017
1 parent 05144f1 commit d0474ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chapters/05-exercise-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ app.configure( function() {
app.use( app.router );

//Where to serve static content
app.use( express.static( path.join( application_root, '../', site') ) );
app.use( express.static( path.join( application_root, '../', 'site') ) );

//Show all errors in development
app.use( express.errorHandler({ dumpExceptions: true, showStack: true }));
Expand Down

0 comments on commit d0474ee

Please sign in to comment.