Fix grammar issue: Administration -> Administrative

This commit is contained in:
Juan Cruz Viotti 2016-01-25 09:00:04 -04:00
parent bee523828a
commit 40f015de93
2 changed files with 2 additions and 2 deletions

View File

@ -229,7 +229,7 @@ limitations under the License.
}
return capitano.runAsync(configure).then(function() {
var message;
message = 'Initializing a device requires administration permissions\ngiven that we need to access raw devices directly.\n';
message = 'Initializing a device requires administrative permissions\ngiven that we need to access raw devices directly.\n';
return helpers.sudo(['os', 'initialize', temporalPath, '--type', application.device_type], message);
})["catch"](function(error) {
return resin.models.device.remove(device.uuid)["finally"](function() {

View File

@ -298,7 +298,7 @@ exports.init =
configure += ' --advanced' if options.advanced
capitano.runAsync(configure).then ->
message = '''
Initializing a device requires administration permissions
Initializing a device requires administrative permissions
given that we need to access raw devices directly.
'''