Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions messages/envVars.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Number of source-tracked file updates to batch after a deploy or retrieve. The d

# sfdxDisableTelemetry

Set to true to disable Salesforce CLI from collecting usage information, user environment information, and crash reports. Default value is false. Overrides the disableTelemetry configration variable.
Set to true to disable Salesforce CLI from collecting usage information, user environment information, and crash reports. Default value is false. Overrides the disableTelemetry configuration variable.

# sfdxDnsTimeout

Expand Down Expand Up @@ -192,7 +192,7 @@ URL that overrides the aud (audience) field used for JWT authentication so that

# sfCodeCoverageRequirement

Code coverage percentages that are displayed in green when you run the Apex test CLIcommands with the --code-coverage flag.
Code coverage percentages that are displayed in green when you run the Apex test CLI commands with the --code-coverage flag.

# sfContentType

Expand All @@ -212,7 +212,7 @@ Set to true to disable polling of your org’s SourceMember object when you run

# sfDisableTelemetry

Set to true to disable Salesforce CLI from collecting usage information, user environment information, and crash reports. Default value is false. Overrides the disableTelemetry configration variable.
Set to true to disable Salesforce CLI from collecting usage information, user environment information, and crash reports. Default value is false. Overrides the disableTelemetry configuration variable.

# sfDnsTimeout

Expand Down
2 changes: 1 addition & 1 deletion src/org/authInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@ export class AuthInfo extends AsyncOptionalCreatable<AuthInfo.Options> {
const audienceUrl = await url.getJwtAudienceUrl(createdOrgInstance);
let authFieldsBuilder: JsonMap | undefined;
const authErrors = [];
// given that we can no longer depend on instance names or URls to determine audience, let's try them all
// given that we can no longer depend on instance names or URLs to determine audience, let's try them all
const loginAndAudienceUrls = getLoginAudienceCombos(audienceUrl, loginUrl);
for (const [login, audience] of loginAndAudienceUrls) {
try {
Expand Down
4 changes: 2 additions & 2 deletions src/org/org.ts
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ export class Org extends AsyncOptionalCreatable<Org.Options> {
await this.removeSandboxConfig();
await this.removeUsers(throwWhenRemoveFails);
await this.removeUsersConfig();
// An attempt to remove this org's auth file occurs in this.removeUsersConfig. That's because this org's usersname is also
// An attempt to remove this org's auth file occurs in this.removeUsersConfig. That's because this org's username is also
// included in the OrgUser config file.
//
// So, just in case no users are added to this org we will try the remove again.
Expand Down Expand Up @@ -1305,7 +1305,7 @@ export class Org extends AsyncOptionalCreatable<Org.Options> {
/**
* Gets the sandboxProcessObject and then polls for it to complete.
*
* @param sandboxProcessName sanbox process name
* @param sandboxProcessName sandbox process name
* @param options { wait?: Duration; interval?: Duration }
* @returns {SandboxProcessObject} The SandboxProcessObject for the sandbox
*/
Expand Down
2 changes: 1 addition & 1 deletion src/org/scratchOrgInfoApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const errorCodes = Messages.loadMessages('@salesforce/core', 'scratchOrgErrorCod
* Returns the url to be used to authorize into the new scratch org
*
* @param scratchOrgInfoComplete The completed ScratchOrgInfo
* @param hubOrgLoginUrl the hun org login url
* @param hubOrgLoginUrl the hub org login url
* @param signupTargetLoginUrl the login url
* @returns {string}
*/
Expand Down
2 changes: 1 addition & 1 deletion src/org/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ export class User extends AsyncCreatable<User.Options> {
}
});

// Concatinating remaining length randomly with all lower characters
// Concatenating remaining length randomly with all lower characters
password = password.concat(
Array(Math.max(passwordCondition.length - password.length, 0))
.fill('0')
Expand Down
4 changes: 2 additions & 2 deletions src/sfError.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export class SfError<T extends ErrorDataProperties = ErrorDataProperties> extend
public data?: T;

/**
* Some errors support `error.code` instead of `error.name`. This keeps backwards compatability.
* Some errors support `error.code` instead of `error.name`. This keeps backwards compatibility.
*/
#code?: string;

Expand All @@ -76,7 +76,7 @@ export class SfError<T extends ErrorDataProperties = ErrorDataProperties> extend
* @param message The error message.
* @param name The error name. Defaults to 'SfError'.
* @param actions The action message(s).
* @param exitCodeOrCause The exit code which will be used by SfdxCommand or he underlying error that caused this error to be raised.
* @param exitCodeOrCause The exit code which will be used by SfdxCommand or the underlying error that caused this error to be raised.
* @param cause The underlying error that caused this error to be raised.
*/
public constructor(
Expand Down
2 changes: 1 addition & 1 deletion src/status/myDomainResolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class MyDomainResolver extends AsyncOptionalCreatable<MyDomainResolver.Op
* given the optional interval. Returns the resolved ip address.
*
* If SFDX_DISABLE_DNS_CHECK environment variable is set to true, it will immediately return the host without
* executing the dns loookup.
* executing the dns lookup.
*/
public async resolve(): Promise<string> {
const env = new Env();
Expand Down
2 changes: 1 addition & 1 deletion src/testSetup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,7 @@ export class StreamingMockCometClient extends CometClient {
public setHeader(name: string, value: string): void {}

/**
* Fake subscription that completed after the setTimout event phase.
* Fake subscription that completed after the setTimeout event phase.
*
* @param channel The streaming channel.
* @param callback The function to invoke after the subscription completes.
Expand Down