Skip to content

Commit ff97d1a

Browse files
committed
Fix spelling
1 parent 2fcb4be commit ff97d1a

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

src/corelib/Compute/v2_1/ComputeService.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -235,10 +235,10 @@ public ComputeService(IAuthenticationProvider authenticationProvider, string reg
235235
return _computeApi.WaitForImageStatusAsync<Image, ImageStatus>(imageId, status, refreshDelay, timeout, progress, cancellationToken);
236236
}
237237

238-
/// <inheritdoc cref="ComputeApi.CreateImagMetadataAsync" />
239-
public Task CreateImagMetadataAsync(Identifier imageId, string key, string value, CancellationToken cancellationToken = default(CancellationToken))
238+
/// <inheritdoc cref="ComputeApi.CreateImageMetadataAsync" />
239+
public Task CreateImageMetadataAsync(Identifier imageId, string key, string value, CancellationToken cancellationToken = default(CancellationToken))
240240
{
241-
return _computeApi.CreateImagMetadataAsync(imageId, key, value, cancellationToken);
241+
return _computeApi.CreateImageMetadataAsync(imageId, key, value, cancellationToken);
242242
}
243243

244244
/// <inheritdoc cref="ComputeApi.ListImageSummariesAsync{TPage}" />

src/corelib/Compute/v2_1/ComputeServiceExtensions.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -214,10 +214,10 @@ public static void WaitForImageStatus(this ComputeService service, Identifier im
214214
service.WaitForImageStatusAsync(imageId, status, refreshDelay, timeout, progress).ForceSynchronous();
215215
}
216216

217-
/// <inheritdoc cref="ComputeService.CreateImagMetadataAsync" />
218-
public static void CreateImagMetadata(this ComputeService service, Identifier imageId, string key, string value)
217+
/// <inheritdoc cref="ComputeService.CreateImageMetadataAsync" />
218+
public static void CreateImageMetadata(this ComputeService service, Identifier imageId, string key, string value)
219219
{
220-
service.CreateImagMetadataAsync(imageId, key, value).ForceSynchronous();
220+
service.CreateImageMetadataAsync(imageId, key, value).ForceSynchronous();
221221
}
222222

223223
/// <inheritdoc cref="ComputeService.ListImageSummariesAsync" />

src/corelib/Compute/v2_1/ImageMetadata.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ protected void AssertParentIsSet([CallerMemberName]string callerName = "")
5454
{
5555
AssertParentIsSet();
5656
var compute = this.GetOwnerOrThrow<ComputeApi>();
57-
await compute.CreateImagMetadataAsync(Image.Id, key, value, cancellationToken);
57+
await compute.CreateImageMetadataAsync(Image.Id, key, value, cancellationToken);
5858
this[key] = value;
5959
}
6060

src/corelib/Compute/v2_1/Serialization/ComputeApi.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -555,13 +555,13 @@ protected ComputeApi(IServiceType serviceType, IAuthenticationProvider authentic
555555
}
556556

557557
/// <summary />
558-
public virtual Task CreateImagMetadataAsync(string imageId, string key, string value, CancellationToken cancellationToken = default(CancellationToken))
558+
public virtual Task CreateImageMetadataAsync(string imageId, string key, string value, CancellationToken cancellationToken = default(CancellationToken))
559559
{
560-
return BuildCreateImagMetadataRequest(imageId, key, value, cancellationToken).SendAsync();
560+
return BuildCreateImageMetadataRequest(imageId, key, value, cancellationToken).SendAsync();
561561
}
562562

563563
/// <summary />
564-
public virtual async Task<PreparedRequest> BuildCreateImagMetadataRequest(string imageId, string key, string value, CancellationToken cancellationToken = default(CancellationToken))
564+
public virtual async Task<PreparedRequest> BuildCreateImageMetadataRequest(string imageId, string key, string value, CancellationToken cancellationToken = default(CancellationToken))
565565
{
566566
var imageMetadata = new
567567
{

0 commit comments

Comments
 (0)