Skip to content

Commit

Permalink
Yardoc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ancorgs committed Jul 7, 2017
1 parent 5daf88f commit 5475776
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/lib/y2storage/autoinst_proposal.rb
Expand Up @@ -49,8 +49,8 @@ class AutoinstProposal < Proposal::Base
# @param devicegraph [Devicegraph] starting point. If nil, then probed devicegraph
# will be used
# @param disk_analyzer [DiskAnalyzer] by default, the method will create a new one
# based on the initial {devicegraph} or will use the one in {StorageManager} if
# starting from probed (i.e. {devicegraph} argument is also missing)
# based on the initial devicegraph or will use the one in {StorageManager} if
# starting from probed (i.e. 'devicegraph' argument is also missing)
def initialize(partitioning: [], devicegraph: nil, disk_analyzer: nil)
super(devicegraph: devicegraph, disk_analyzer: disk_analyzer)
@partitioning = AutoinstProfile::PartitioningSection.new_from_hashes(partitioning)
Expand Down
6 changes: 3 additions & 3 deletions src/lib/y2storage/proposal/base.rb
Expand Up @@ -46,9 +46,9 @@ class Base
#
# @param devicegraph [Devicegraph] starting point. If nil, the probed
# devicegraph will be used
# @param disk_analyzer [DiskAnalyzer] by default, a new one will be created
# based on the initial {devicegraph} or it will use the one in {StorageManager}
# if starting from probed (i.e. {devicegraph} argument is also missing)
# @param disk_analyzer [DiskAnalyzer] by default, a new one will be created
# based on the initial devicegraph or it will use the one in {StorageManager}
# if starting from probed (i.e. 'devicegraph' argument is also missing)
def initialize(devicegraph: nil, disk_analyzer: nil)
@proposed = false
@initial_devicegraph = devicegraph
Expand Down

0 comments on commit 5475776

Please sign in to comment.