Skip to content

Commit

Permalink
various: fix minor typos
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Linnane <[email protected]>
  • Loading branch information
p-linnane committed Feb 16, 2024
1 parent 47b8755 commit 784372d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/orka_api_client/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ def vm_configuration(name)
# their resources allocated. +:default+ keeps used vs free resources balanced between the nodes.
# @param [Numeric] memory
# @return [Models::VMConfiguration] The lazily-loaded VM configuration.
def create_vm_configuraton(name,
def create_vm_configuration(name,
base_image:, snapshot_image:, cpu_cores:, vcpu_count:,
iso_image: nil, attached_disk: nil, vnc_console: nil,
system_serial: nil, io_boost: nil, net_boost: nil, gpu_passthrough: nil,
Expand Down
2 changes: 1 addition & 1 deletion lib/orka_api_client/models/enumerator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def initialize
end
end

# Forces this lazily-loaded enumerator to be fully loaded, peforming any necessary network operations.
# Forces this lazily-loaded enumerator to be fully loaded, performing any necessary network operations.
#
# @return [self]
def eager
Expand Down
2 changes: 1 addition & 1 deletion lib/orka_api_client/models/lazy_model.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def initialize(lazy_initialized)
end
private_class_method :new

# Forces this lazily-loaded object to be fully loaded, peforming any necessary network operations.
# Forces this lazily-loaded object to be fully loaded, performing any necessary network operations.
#
# @return [self]
def eager
Expand Down
2 changes: 1 addition & 1 deletion lib/orka_api_client/models/vm_configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class VMConfiguration < LazyModel
# @return [Boolean] True if GPU passthrough should be enabled for deployed VMs of this configuration.
lazy_attr :gpu_passthrough?

# @return [String, nil] The custom system serial nubmer, if set.
# @return [String, nil] The custom system serial number, if set.
lazy_attr :system_serial

# @return [String, nil] The tag that VMs of this configuration should be deployed to, if any.
Expand Down

0 comments on commit 784372d

Please sign in to comment.