Skip to content

Commit 18c9355

Browse files
committed
Replaced instances of single quotes w/ double
1 parent 0d12a20 commit 18c9355

File tree

10 files changed

+6742
-6740
lines changed

10 files changed

+6742
-6740
lines changed

scripts/generate.ts

Lines changed: 234 additions & 234 deletions
Large diffs are not rendered by default.

src/OAuth2Bearer.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
import { AuthClient, AuthHeader } from "./types";
55

66
export class OAuth2Bearer implements AuthClient {
7-
private bearer_token: string;
7+
private bearer_token: string;
88

9-
constructor(bearer_token: string) {
10-
this.bearer_token = bearer_token;
11-
}
9+
constructor(bearer_token: string) {
10+
this.bearer_token = bearer_token;
11+
}
1212

13-
getAuthHeader(): AuthHeader {
14-
return {
15-
Authorization: `Bearer ${this.bearer_token}`,
16-
};
17-
}
13+
getAuthHeader(): AuthHeader {
14+
return {
15+
Authorization: `Bearer ${this.bearer_token}`,
16+
};
17+
}
1818
}

0 commit comments

Comments
 (0)