Skip to content

Commit

Permalink
remove all notes about sections from documentation in bootloader client
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Sep 9, 2014
1 parent 1a6c9ea commit def9451
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/clients/bootloader.rb
Expand Up @@ -134,7 +134,7 @@ def BootloaderSummaryHandler(options)
end


# Modify the boot loader section
# Modify the boot loader global option
# @param [String] key string the key to modify
# @param [String] value string the value to set
# @return [Boolean] true on success
Expand All @@ -143,7 +143,7 @@ def BootloaderModify(key, value)
return true
end

# Set specified option in specified section
# Set specified option in global options
# @param [Hash] options a list of parameters passed as args
# @return [Boolean] true on success
def BootloaderSetHandler(options)
Expand All @@ -157,15 +157,15 @@ def BootloaderSetHandler(options)
BootloaderModify(option, value.to_s)
end

# Delete specified option in specified section
# Delete specified option
# @param [Hash] options a list of parameters passed as args
# @return [Boolean] true on success
def BootloaderDeleteHandler(options)
option = options["option"]
BootloaderModifySection(section, option, nil)
BootloaderModifySection(option, nil)
end

# Print the value of specified option of specified section
# Print the value of specified option
# @param [Hash] options a list of parameters passed as args
# @return [Boolean] true on success
def BootloaderPrintHandler(options)
Expand Down

0 comments on commit def9451

Please sign in to comment.