Renames PERPEND_STRING to PREPEND_STRING

This commit is contained in:
Mateus Pereira 2022-10-19 20:02:36 -03:00
parent 1dbc204d24
commit 3bdb204bf7

View File

@ -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