Skip to content

Spelling #1086

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 61 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
61 commits
Select commit Hold shift + click to select a range
002191e
spelling: access
jsoref May 29, 2024
a9c17ec
spelling: account
jsoref May 29, 2024
716b09c
spelling: anonymous
jsoref May 29, 2024
cd38b0a
spelling: before
jsoref May 29, 2024
12cae3b
spelling: button
jsoref May 29, 2024
2e501a8
spelling: cannot
jsoref May 29, 2024
0efb4d8
spelling: checks
jsoref May 29, 2024
fc7d95d
spelling: compilation
jsoref May 29, 2024
e1eac88
spelling: component
jsoref May 29, 2024
38c94bd
spelling: configurations
jsoref May 29, 2024
2994349
spelling: contains
jsoref May 29, 2024
35cda5e
spelling: contractor
jsoref May 29, 2024
6e1b42e
spelling: current
jsoref May 29, 2024
fe1d916
spelling: determined
jsoref May 29, 2024
fdbb99c
spelling: different
jsoref May 29, 2024
56f1f7f
spelling: displayed
jsoref May 29, 2024
393f857
spelling: document
jsoref May 29, 2024
5aefb7b
spelling: doesn't
jsoref May 29, 2024
27c8e15
spelling: emaillink
jsoref May 29, 2024
4b59e9c
spelling: encrypted
jsoref May 29, 2024
bf93243
spelling: facilitate
jsoref May 29, 2024
a5be5ed
spelling: firebaseui
jsoref May 29, 2024
5afae7c
spelling: getting
jsoref May 29, 2024
1f34746
spelling: github
jsoref May 29, 2024
ef2b553
spelling: handle
jsoref May 29, 2024
94aacec
spelling: identifier
jsoref May 29, 2024
3e51541
spelling: implementation
jsoref May 29, 2024
f3fa2d0
spelling: instance
jsoref May 29, 2024
dbfaa58
spelling: into
jsoref May 29, 2024
2fd14b9
spelling: javascript
jsoref May 29, 2024
484bc14
spelling: latest
jsoref May 29, 2024
58877f4
spelling: mismatch
jsoref May 29, 2024
0cbb38e
spelling: multiple
jsoref May 29, 2024
38611a6
spelling: national
jsoref May 29, 2024
0dc101f
spelling: only
jsoref May 29, 2024
279b4b4
spelling: operation
jsoref May 29, 2024
a167969
spelling: operations
jsoref May 29, 2024
baccb2a
spelling: overridden
jsoref May 29, 2024
18f43bb
spelling: paragraph
jsoref May 29, 2024
3527dd6
spelling: parameters
jsoref May 29, 2024
48481c6
spelling: password
jsoref May 29, 2024
32cefb4
spelling: preexisting
jsoref May 29, 2024
27dd67f
spelling: processing
jsoref May 29, 2024
2f5b523
spelling: really
jsoref May 29, 2024
95e1a85
spelling: recovery
jsoref May 29, 2024
c49082d
spelling: representing
jsoref May 29, 2024
81c6878
spelling: resource
jsoref May 29, 2024
0bcf908
spelling: safari
jsoref May 29, 2024
e53856b
spelling: selection
jsoref May 29, 2024
4b0adca
spelling: serialized
jsoref May 29, 2024
f2354ea
spelling: setting
jsoref May 29, 2024
8fd3f41
spelling: should
jsoref May 29, 2024
39e0fa7
spelling: supports
jsoref May 29, 2024
061a746
spelling: the
jsoref May 29, 2024
0ab9f4e
spelling: type
jsoref May 29, 2024
8182f00
spelling: upgrade
jsoref May 29, 2024
333fb21
spelling: upgradeable
jsoref May 29, 2024
93a61fc
spelling: verification
jsoref May 29, 2024
4b1a70a
spelling: verify
jsoref May 29, 2024
d641ad2
spelling: visibility
jsoref May 29, 2024
424f79f
spelling: will
jsoref May 29, 2024
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
Prev Previous commit
Next Next commit
spelling: type
Signed-off-by: Josh Soref <[email protected]>
  • Loading branch information
jsoref committed May 29, 2024
commit 0ab9f4e52ee2f4bccdbe52c2037a231dfaae0543
4 changes: 2 additions & 2 deletions javascript/widgets/config_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1362,7 +1362,7 @@ testSuite({
tosCallback = () => {};
config.update('tosUrl', tosCallback);
assertEquals(tosCallback, config.getTosUrl());
// Tests if invalid tyoe is passed to tosUrl config.
// Tests if invalid type is passed to tosUrl config.
config.update('tosUrl', 123456);
assertNull(config.getTosUrl());
},
Expand Down Expand Up @@ -1398,7 +1398,7 @@ testSuite({
privacyPolicyCallback = () => {};
config.update('privacyPolicyUrl', privacyPolicyCallback);
assertEquals(privacyPolicyCallback, config.getPrivacyPolicyUrl());
// Tests if invalid tyoe is passed to tosUrl config.
// Tests if invalid type is passed to tosUrl config.
config.update('privacyPolicyUrl', 123456);
assertNull(config.getPrivacyPolicyUrl());
},
Expand Down