Fix typos in interface comments
Kubernetes-commit: 080fe8346da3182778830c25f79ee5dd2cc9c589
This commit is contained in:
parent
8f0df5a9dc
commit
34741a1768
|
@ -482,7 +482,7 @@ const _ = grpc.SupportPackageIsVersion4
|
||||||
type NodeClient interface {
|
type NodeClient interface {
|
||||||
// NodePrepareResources prepares several ResourceClaims
|
// NodePrepareResources prepares several ResourceClaims
|
||||||
// for use on the node. If an error is returned, the
|
// for use on the node. If an error is returned, the
|
||||||
// response is ignored. Failures for individidual claims
|
// response is ignored. Failures for individual claims
|
||||||
// can be reported inside NodePrepareResourcesResponse.
|
// can be reported inside NodePrepareResourcesResponse.
|
||||||
NodePrepareResources(ctx context.Context, in *NodePrepareResourcesRequest, opts ...grpc.CallOption) (*NodePrepareResourcesResponse, error)
|
NodePrepareResources(ctx context.Context, in *NodePrepareResourcesRequest, opts ...grpc.CallOption) (*NodePrepareResourcesResponse, error)
|
||||||
// NodeUnprepareResources is the opposite of NodePrepareResources.
|
// NodeUnprepareResources is the opposite of NodePrepareResources.
|
||||||
|
@ -520,7 +520,7 @@ func (c *nodeClient) NodeUnprepareResources(ctx context.Context, in *NodeUnprepa
|
||||||
type NodeServer interface {
|
type NodeServer interface {
|
||||||
// NodePrepareResources prepares several ResourceClaims
|
// NodePrepareResources prepares several ResourceClaims
|
||||||
// for use on the node. If an error is returned, the
|
// for use on the node. If an error is returned, the
|
||||||
// response is ignored. Failures for individidual claims
|
// response is ignored. Failures for individual claims
|
||||||
// can be reported inside NodePrepareResourcesResponse.
|
// can be reported inside NodePrepareResourcesResponse.
|
||||||
NodePrepareResources(context.Context, *NodePrepareResourcesRequest) (*NodePrepareResourcesResponse, error)
|
NodePrepareResources(context.Context, *NodePrepareResourcesRequest) (*NodePrepareResourcesResponse, error)
|
||||||
// NodeUnprepareResources is the opposite of NodePrepareResources.
|
// NodeUnprepareResources is the opposite of NodePrepareResources.
|
||||||
|
|
|
@ -34,7 +34,7 @@ option (gogoproto.goproto_unrecognized_all) = false;
|
||||||
service Node {
|
service Node {
|
||||||
// NodePrepareResources prepares several ResourceClaims
|
// NodePrepareResources prepares several ResourceClaims
|
||||||
// for use on the node. If an error is returned, the
|
// for use on the node. If an error is returned, the
|
||||||
// response is ignored. Failures for individidual claims
|
// response is ignored. Failures for individual claims
|
||||||
// can be reported inside NodePrepareResourcesResponse.
|
// can be reported inside NodePrepareResourcesResponse.
|
||||||
rpc NodePrepareResources (NodePrepareResourcesRequest)
|
rpc NodePrepareResources (NodePrepareResourcesRequest)
|
||||||
returns (NodePrepareResourcesResponse) {}
|
returns (NodePrepareResourcesResponse) {}
|
||||||
|
|
Loading…
Reference in New Issue