Skip to content

Commit cb75669

Browse files
authored
fix: update header comments for app.rake and dev.rake (#622)
While working on an internal app I realized we had an extra backtick in the `app.rake` comment, and that lead me to realize our wording is a bit ambiguous so I've updated both tasks to mirror each other
1 parent 3608649 commit cb75669

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

variants/backend-base/lib/tasks/app.rake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# The app namespace is for tasks which may be useful both in local development
33
# and on deployed environments.
44
#
5-
# If your task will be run in local development only you should choose the `dev`
6-
# namespace (see `dev.rake``)
5+
# if your tasks are intended to only be run in local development, you should
6+
# use the `dev` namespace (in `dev.rake`) instead
77
#
88
namespace :app do
99
desc "Print (to STDOUT) count of records in DB for each ActiveRecord model"

variants/backend-base/lib/tasks/dev.rake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
##
22
# The dev namespace is for tasks which are intended for local development only.
33
#
4-
# If your task could be run in local development or a deployed environment you
5-
# should choose the `app` namespace (see `app.rake`)
4+
# If your tasks are safe and could be useful to run in a deployed environment,
5+
# you should use the `app` namespace (in `app.rake`) instead
66

77
##
88
# WARNING: Wrap `require` for development only gems in an environment check

0 commit comments

Comments
 (0)