Skip to content

Commit

Permalink
Merge pull request #74 from MicrosoftDocs/main
Browse files Browse the repository at this point in the history
Merge main to live
  • Loading branch information
baywet authored Nov 22, 2023
2 parents b05836e + ed56553 commit 1cccdeb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions OpenAPI/kiota/authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public interface IAuthenticationProvider
}
```

The `request` parameter is the abstract request to be executed. The return value must be a `Task` that completes whenever the authentication sequence has completed and the request object has been updates with the additional authentication/authorization information.
The `request` parameter is the abstract request to be executed. The return value must be a `Task` that completes whenever the authentication sequence has completed and the request object has been updated with the additional authentication/authorization information.

### [Go](#tab/go)

Expand All @@ -39,7 +39,7 @@ type AuthenticationProvider interface {
}
```

The `request` parameter is the abstract request to be executed. The method should return whenever the authentication sequence has completed and the request object has been updates with the additional authentication/authorization information.
The `request` parameter is the abstract request to be executed. The method should return whenever the authentication sequence has completed and the request object has been updated with the additional authentication/authorization information.

### [Java](#tab/java)

Expand All @@ -50,7 +50,7 @@ public interface AuthenticationProvider {
}
```

The `request` parameter is the abstract request to be executed. The return value must be a `CompletableFuture` that completes whenever the authentication sequence has completed and the request object has been updates with the additional authentication/authorization information.
The `request` parameter is the abstract request to be executed. The return value must be a `CompletableFuture` that completes whenever the authentication sequence has completed and the request object has been updated with the additional authentication/authorization information.

### [PHP](#tab/php)

Expand All @@ -60,7 +60,7 @@ interface AuthenticationProvider {
}
```

The `request` parameter is the abstract request to be executed. The return value must be a `Promise` that completes whenever the authentication sequence has completed and the request object has been updates with the additional authentication/authorization information.
The `request` parameter is the abstract request to be executed. The return value must be a `Promise` that completes whenever the authentication sequence has completed and the request object has been updated with the additional authentication/authorization information.

### [Python](#tab/python)

Expand All @@ -72,7 +72,7 @@ class AuthenticationProvider(ABC):
pass
```

The `request` parameter is the abstract request to be executed. The method should return whenever the authentication sequence has completed and the request object has been updates with the additional authentication/authorization information.
The `request` parameter is the abstract request to be executed. The method should return whenever the authentication sequence has completed and the request object has been updated with the additional authentication/authorization information.

### [Ruby](#tab/ruby)

Expand All @@ -84,7 +84,7 @@ module AuthenticationProvider
end
```

The `request` parameter is the abstract request to be executed. The method should return whenever the authentication sequence has completed and the request object has been updates with the additional authentication/authorization information.
The `request` parameter is the abstract request to be executed. The method should return whenever the authentication sequence has completed and the request object has been updated with the additional authentication/authorization information.

### [TypeScript](#tab/typescript)

Expand All @@ -97,7 +97,7 @@ export interface AuthenticationProvider {
}
```

The `request` parameter is the abstract request to be executed. The return value must be a `Promise` that completes whenever the authentication sequence has completed and the request object has been updates with the additional authentication/authorization information.
The `request` parameter is the abstract request to be executed. The return value must be a `Promise` that completes whenever the authentication sequence has completed and the request object has been updated with the additional authentication/authorization information.

<!-- markdownlint-enable MD051 -->

Expand Down

0 comments on commit 1cccdeb

Please sign in to comment.