Skip to content

Commit f9b675f

Browse files
committed
Fix typo
1 parent b187ae7 commit f9b675f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/corelib/Compute/v2_1/ComputeApiBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1151,15 +1151,15 @@ public virtual async Task<TPage> ListImageDetailsAsync<TPage>(Url url, Cancellat
11511151
public virtual async Task<T> ListSecurityGroupsAsync<T>(string serverId = null, CancellationToken cancellationToken = default(CancellationToken))
11521152
where T : IEnumerable<IServiceResource>
11531153
{
1154-
var result = await BuildListSecurityGropusAsync(serverId, cancellationToken)
1154+
var result = await BuildListSecurityGroupsAsync(serverId, cancellationToken)
11551155
.SendAsync()
11561156
.ReceiveJson<T>();
11571157
result.PropogateOwner(this);
11581158
return result;
11591159
}
11601160

11611161
/// <summary />
1162-
public virtual async Task<PreparedRequest> BuildListSecurityGropusAsync(string serverId = null, CancellationToken cancellationToken = default(CancellationToken))
1162+
public virtual async Task<PreparedRequest> BuildListSecurityGroupsAsync(string serverId = null, CancellationToken cancellationToken = default(CancellationToken))
11631163
{
11641164
Url endpoint = await UrlBuilder.GetEndpoint(cancellationToken).ConfigureAwait(false);
11651165

0 commit comments

Comments
 (0)