diff --git a/services/graphrbac/1.6/graphrbac/models.go b/services/graphrbac/1.6/graphrbac/models.go index b08b43e608cf..66c76b8ef6dc 100644 --- a/services/graphrbac/1.6/graphrbac/models.go +++ b/services/graphrbac/1.6/graphrbac/models.go @@ -2596,7 +2596,7 @@ type Permissions struct { // specified resource that an application requires access to. The specified OAuth 2.0 permission scopes may // be requested by client applications (through the requiredResourceAccess collection) when calling a // resource application. The requiredResourceAccess property of the Application entity is a collection of -// ReqiredResourceAccess. +// RequiredResourceAccess. type RequiredResourceAccess struct { // AdditionalProperties - Unmatched properties from the message are deserialized this collection AdditionalProperties map[string]interface{} `json:""` diff --git a/services/graphrbac/1.6/graphrbac/oauth2.go b/services/graphrbac/1.6/graphrbac/oauth2.go index 147de2ad3424..97e79c76ddcf 100644 --- a/services/graphrbac/1.6/graphrbac/oauth2.go +++ b/services/graphrbac/1.6/graphrbac/oauth2.go @@ -119,7 +119,7 @@ func (client OAuth2Client) GetResponder(resp *http.Response) (result Permissions // Grant grants OAuth2 permissions for the relevant resource Ids of an app. // Parameters: -// body - the relevant app Service Principal Object Id and the Service Principal Objecit Id you want to grant. +// body - the relevant app Service Principal Object Id and the Service Principal Object Id you want to grant. func (client OAuth2Client) Grant(ctx context.Context, body *Permissions) (result Permissions, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/OAuth2Client.Grant")