Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update casing of Bearer in basic TypeSpec
Browse files Browse the repository at this point in the history
lmazuel authored Nov 7, 2023
1 parent 3695abb commit a74e0c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/http/src/types.ts
Original file line number Diff line number Diff line change
@@ -71,7 +71,7 @@ export interface BasicAuth extends HttpAuthBase {
*/
export interface BearerAuth extends HttpAuthBase {
type: "http";
scheme: "bearer";
scheme: "Bearer";
}

type ApiKeyLocation = "header" | "query" | "cookie";

0 comments on commit a74e0c4

Please sign in to comment.