From 3bdb204bf7fbcc9be3832ed58c4ab83bda945411 Mon Sep 17 00:00:00 2001 From: Mateus Pereira Date: Wed, 19 Oct 2022 20:02:36 -0300 Subject: [PATCH] Renames `PERPEND_STRING` to `PREPEND_STRING` --- lib/vagrant/util/install_cli_autocomplete.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/vagrant/util/install_cli_autocomplete.rb b/lib/vagrant/util/install_cli_autocomplete.rb index 9aaf61a1d..d01f5c096 100644 --- a/lib/vagrant/util/install_cli_autocomplete.rb +++ b/lib/vagrant/util/install_cli_autocomplete.rb @@ -3,7 +3,7 @@ module Vagrant # Generic installation of content to shell config file class InstallShellConfig - PERPEND_STRING = "# >>>> Vagrant command completion (start)".freeze + PREPEND_STRING = "# >>>> Vagrant command completion (start)".freeze APPEND_STRING = "# <<<< Vagrant command completion (end)".freeze attr_accessor :prepend_string @@ -12,7 +12,7 @@ module Vagrant attr_accessor :config_paths def initialize(string_insert, config_paths) - @prepend_string = PERPEND_STRING + @prepend_string = PREPEND_STRING @string_insert = string_insert @append_string = APPEND_STRING @config_paths = config_paths