Skip to content

Commit

Permalink
Fix the default case to be 'defaults'
Browse files Browse the repository at this point in the history
The default case should be 'defaults' and not 'development' to match the documentation.
  • Loading branch information
sirwesley authored Nov 15, 2017
1 parent 77dc409 commit 279de56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/angular-environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ angular.module('environment', []).
return new RegExp(local.pregQuote(string).replace(/\\\*/g, '.*').replace(/\\\?/g, '.'), 'g');
};

this.environment = 'development'; // default
this.environment = 'defaults'; // default
this.data = {}; // user defined environments data

/**
Expand Down

0 comments on commit 279de56

Please sign in to comment.