Skip to content

Commit

Permalink
improved method docs
Browse files Browse the repository at this point in the history
  • Loading branch information
shundhammer committed Dec 22, 2015
1 parent e78ab83 commit 771304b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/storage/disk_analyzer.rb
Expand Up @@ -109,7 +109,7 @@ def analyze
# checking if a disk is an installation disk involves mounting and
# unmounting each partition on that disk.
#
# @return [Array<::Storage::Disk>] disks
# @return [Array<::Storage::Disk>] installation disks
#
def find_installation_disks
disks = ::Storage::Disk.all(StorageManager.instance.probed).to_a
Expand All @@ -136,7 +136,7 @@ def find_installation_disks
# Find disks that are suitable for installing Linux.
# Put any USB disks to the end of that array.
#
# @return [Array<::Storage::Disk>] disks
# @return [Array<::Storage::Disk>] candidate disks
#
def find_candidate_disks
disks = ::Storage::Disk.all(StorageManager.instance.probed).to_a
Expand Down Expand Up @@ -165,7 +165,7 @@ def find_candidate_disks
# containing the disks that are not installation media.
#
# @param disks [Array<::Storage::Disk>]
# @return [Array<::Storage::Disk>] disks
# @return [Array<::Storage::Disk>] non-installation disks
#
def remove_installation_disks(disks)
# We can't simply use
Expand Down

0 comments on commit 771304b

Please sign in to comment.