Skip to content

Commit ec1bbf5

Browse files
authored
refactor: fix typos (#150)
1 parent 424f14f commit ec1bbf5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

adminSDK/reseller/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
}
148148

149149
const subscriptions = response.result.subscriptions;
150-
if (!subscriptions || usubscriptionssers.length == 0) {
150+
if (!subscriptions || subscriptions.length == 0) {
151151
document.getElementById('content').innerText = 'No subscriptions found.';
152152
return;
153153
}

drive/picker/helloworld.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@
5959
* Callback after api.js is loaded.
6060
*/
6161
function gapiLoaded() {
62-
gapi.load('client:picker', intializePicker);
62+
gapi.load('client:picker', initializePicker);
6363
}
6464

6565
/**
6666
* Callback after the API client is loaded. Loads the
6767
* discovery doc to initialize the API.
6868
*/
69-
async function intializePicker() {
69+
async function initializePicker() {
7070
await gapi.client.load('https://www.googleapis.com/discovery/v1/apis/drive/v3/rest');
7171
pickerInited = true;
7272
maybeEnableButtons();

0 commit comments

Comments
 (0)