Skip to content

Commit 60d3b87

Browse files
committed
Typos spotted by @ocdtrekkie
1 parent 7658292 commit 60d3b87

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

shell/packages/sandstorm-db/db.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ ApiTokens = new Mongo.Collection("apiTokens", collectionOptions);
428428
// identity: An Identity capability. The field is the identity ID.
429429
// http: An ApiSession capability pointing to an external HTTP service. Object containing:
430430
// url: Base URL of the external service.
431-
// auth: Authentitation mechanism. Object containing one of:
431+
// auth: Authentication mechanism. Object containing one of:
432432
// none: Value "null". Indicates no authorization.
433433
// bearer: A bearer token to pass in the `Authorization: Bearer` header on all
434434
// requests. Encrypted with nonce 0.

shell/server/drivers/external-ui-view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ function registerHttpApiFrontendRef(registry) {
164164
if ("none" in request.auth) {
165165
request.auth = { bearer: parsedUrl.hash.slice(1) };
166166
} else {
167-
throw new Meteor.Error(400, "Can't supprot multiple authentication mechanisms at once");
167+
throw new Meteor.Error(400, "Can't support multiple authentication mechanisms at once");
168168
}
169169

170170
parsedUrl.hash = null;

0 commit comments

Comments
 (0)