From e46d88b259a6c270757892d200fc48cb161dc660 Mon Sep 17 00:00:00 2001 From: Daniel Medina Date: Tue, 17 Dec 2024 15:22:47 -0500 Subject: [PATCH] rubocop correction --- src/courses/delta/06.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/courses/delta/06.md b/src/courses/delta/06.md index b1cabe291..ad95efae3 100644 --- a/src/courses/delta/06.md +++ b/src/courses/delta/06.md @@ -180,8 +180,8 @@ The current available commands for testing are: ```sh bundle exec rake [inspec or cinc-auditor]:check # validate the inspec profile bundle exec rake lint # Run RuboCop - bundle exec rake lint:autocorrect # Autocorrect RuboCop offenses (only when it's safe) - bundle exec rake lint:autocorrect_all # Autocorrect RuboCop offenses (safe and unsafe) + bundle exec rake lint:auto_correct # Autocorrect RuboCop offenses (only when it's safe) + bundle exec rake lint:auto_correct_all # Autocorrect RuboCop offenses (safe and unsafe) bundle exec rake pre_commit_checks # Ensure the controls are ready to be committed into the repo ```