Skip to content

Commit b978323

Browse files
committed
fix typo in development tooltip
1 parent bfc6bbc commit b978323

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/templates/server/api/thing/thing.controller.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ exports.index = function(req, res) {<% if (!filters.mongoose) { %>
1717
res.json([
1818
{
1919
name : 'Development Tools',
20-
info : 'Integration with popular tools such as Bower, Grunt, Karma, JSHint, Node Inspector, Livereload, Protractor, Jade, SCSS, CoffeScript, and LESS.'
20+
info : 'Integration with popular tools such as Bower, Grunt, Karma, Mocha, JSHint, Node Inspector, Livereload, Protractor, Jade, Sass, CoffeeScript, and Less.'
2121
}, {
2222
name : 'Server and Client integration',
2323
info : 'Built with a powerful and fun stack: MongoDB, Express, AngularJS, and Node.'
@@ -32,7 +32,7 @@ exports.index = function(req, res) {<% if (!filters.mongoose) { %>
3232
info : 'Build process packs up your templates as a single JavaScript payload, minifies your scripts/css/images, and rewrites asset names for caching.'
3333
},{
3434
name : 'Deployment Ready',
35-
info : 'Easily deploy your app to Heroku or Openshift with the :heroku and :openshift subgenerators'
35+
info : 'Easily deploy your app to Heroku or Openshift with the heroku and openshift subgenerators'
3636
}
3737
]);<% } %><% if (filters.mongoose) { %>
3838
Thing.find(function (err, things) {

app/templates/server/config/seed(mongoose).js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var Thing = require('../api/thing/thing.model');
1111
Thing.find({}).remove(function() {
1212
Thing.create({
1313
name : 'Development Tools',
14-
info : 'Integration with popular tools such as Bower, Grunt, Karma, JSHint, Node Inspector, Livereload, Protractor, Jade, SCSS, CoffeScript, and LESS.'
14+
info : 'Integration with popular tools such as Bower, Grunt, Karma, Mocha, JSHint, Node Inspector, Livereload, Protractor, Jade, Sass, CoffeeScript, and Less.'
1515
}, {
1616
name : 'Server and Client integration',
1717
info : 'Built with a powerful and fun stack: MongoDB, Express, AngularJS, and Node.'
@@ -26,7 +26,7 @@ Thing.find({}).remove(function() {
2626
info : 'Build process packs up your templates as a single JavaScript payload, minifies your scripts/css/images, and rewrites asset names for caching.'
2727
},{
2828
name : 'Deployment Ready',
29-
info : 'Easily deploy your app to Heroku or Openshift with the :heroku and :openshift subgenerators'
29+
info : 'Easily deploy your app to Heroku or Openshift with the heroku and openshift subgenerators'
3030
});
3131
});<% if (filters.auth) { %>
3232

0 commit comments

Comments
 (0)