Skip to content

Commit

Permalink
fix(server): fix error message on bad implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
knagaitsev committed May 30, 2019
1 parent 907f378 commit 07d1d58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/getSocketServerImplementation.js
Expand Up @@ -29,7 +29,7 @@ function getSocketServerImplementation(options) {

if (!serverImplFound) {
throw new Error(
"serverMode must be a string denoting a default implementation (eg. 'sockjs'), a full path to " +
"serverMode must be a string denoting a default implementation (e.g. 'sockjs'), a full path to " +
'a JS file which exports a class extending BaseServer (webpack-dev-server/lib/servers/BaseServer) ' +
'via require.resolve(...), or the class itself which extends BaseServer'
);
Expand Down

0 comments on commit 07d1d58

Please sign in to comment.