Commit d78f5894 authored by Olivier Halligon's avatar Olivier Halligon

Cleanup Ruby doc

parent 20cefcf4
...@@ -285,15 +285,16 @@ module Pod ...@@ -285,15 +285,16 @@ module Pod
end end
end end
# Asks the use to choose an option from a list # Presents a choice among the elements of an array to the user.
# #
# @param [Array<String>] array # @param [Array<#to_s>] array
# The list of options to choose from # The list of the elements among which the user should make his
# choice.
# #
# @param [String] message # @param [String] message
# The prompt to show as the question to choose from the list # The message to display to the user.
# #
# @return [Fixnum] the index of the chosen array item # @return [Fixnum] The index of the chosen array item.
# #
def choose_from_array(array, message) def choose_from_array(array, message)
array.each_with_index do |item, index| array.each_with_index do |item, index|
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment