Skip to content

Commit 5085bd5

Browse files
authored
docs: fix various typos (#167)
1 parent 6df10a2 commit 5085bd5

18 files changed

+31
-32
lines changed

docs/classes/_pages_decimal_setting_d_.decimalsetting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ ___
116116

117117
**min**(`value`: number): *[DecimalSetting](_pages_decimal_setting_d_.decimalsetting.md)*
118118

119-
The minumum inclusive value the decimal can be set to.
119+
The minimum inclusive value the decimal can be set to.
120120

121121
**Parameters:**
122122

docs/classes/_pages_enum_setting_d_.enumsetting.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ A drawback of specifying the options as a map, however, is that the order of the
3131
necessarily be controlled. To specify options in a controlled order you can specify them as a list of id/name
3232
OptionItems:
3333
```
34-
section.enumSetting('opjectListEnum')
34+
section.enumSetting('objectListEnum')
3535
.translateOptions(false)
3636
.options([
3737
{id: 25, name: '25 %'},
@@ -180,7 +180,7 @@ ___
180180

181181
**i18nOptionGroupOptionKey**(`groupName`: string, `optionItemName`: string): *string*
182182

183-
REturnes the localization property file key for the specified grouped option property
183+
Returns the localization property file key for the specified grouped option property
184184

185185
**Parameters:**
186186

@@ -342,7 +342,7 @@ ___
342342

343343
**translateOptions**(`value`: boolean): *[EnumSetting](_pages_enum_setting_d_.enumsetting.md)*
344344

345-
Dtermines whether options are translated, which developers may want to disable if the labels are
345+
Determines whether options are translated, which developers may want to disable if the labels are
346346
values generated by the app and already in the language of the user.
347347

348348
**Parameters:**

docs/classes/_pages_number_setting_d_.numbersetting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ ___
124124

125125
**min**(`value`: number): *[NumberSetting](_pages_number_setting_d_.numbersetting.md)*
126126

127-
The minumum inclusive value the decimal can be set to.
127+
The minimum inclusive value the decimal can be set to.
128128

129129
**Parameters:**
130130

docs/classes/_pages_page_d_.page.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ ___
7070

7171
**nextPageId**(`value`: string): *[Page](_pages_page_d_.page.md)*
7272

73-
Sets the next page in a mult-page app configuration
73+
Sets the next page in a multi-page app configuration
7474

7575
**Parameters:**
7676

@@ -147,7 +147,7 @@ ___
147147

148148
**style**(`value`: [PageStyle](../enums/_pages_page_d_.pagestyle.md)): *[Page](_pages_page_d_.page.md)*
149149

150-
Set the stylee of this page
150+
Set the style of this page
151151

152152
**Parameters:**
153153

docs/classes/_pages_section_d_.section.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[Reference](../index.md)[SmartApp](_smart_app_d_.smartapp.md)[Page](_pages_page_d_.page.md)[Section](_pages_section_d_.section.md)
22
# Section
33

4-
A section is a labeled collection of settings. The contents can be made collapsable if desired.
5-
To create a basic non-collapsable section:
4+
A section is a labeled collection of settings. The contents can be made collapsible if desired.
5+
To create a basic non-collapsible section:
66
```
77
page.section('section1', section => {
88
// create settings here, e.g
99
section.booleanSetting('turnBackOn')
1010
}
1111
```
12-
To make this section collapsable (and initially collapsed):
12+
To make this section collapsible (and initially collapsed):
1313
```
1414
page.section('section1', section => {
1515
section.hideable(true).hidden(true)

docs/classes/_pages_time_setting_d_.timesetting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ ___
117117

118118
**min**(`value`: string): *[TimeSetting](_pages_time_setting_d_.timesetting.md)*
119119

120-
The earlies time that can be entered
120+
The earliest time that can be entered
121121

122122
**Parameters:**
123123

docs/classes/_smart_app_d_.smartapp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ ___
215215

216216
Defines a handler to be called for any device command event that does not have a handler
217217
defined for that specific command. The default implementation of this handler simply logs a
218-
message about the missing command handler. Note that only C2C connector smartapps that create
218+
message about the missing command handler. Note that only C2C connector SmartApps that create
219219
devices will receive command events.
220220

221221
**Parameters:**

docs/interfaces/_util_smart_app_context_d_.smartappcontext.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Tests whether the context is authenticated to make API calls, i.e. has an access
173173
Note that this method does not actually test the validity of the token, but rather
174174
whether it is present or not. Contexts of CONFIGURATION lifecycle events are not
175175
authenticated. Therefore if an app needs to make API calls during the configuration
176-
lifecycle it must use a token store to authenicate itself.
176+
lifecycle it must use a token store to authenticate itself.
177177

178178
**Returns:** *boolean*
179179

lib/lifecycle-events.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export namespace AppEvent {
8383
*/
8484
'value': any;
8585
/**
86-
* The root level data type of the value field. The data types are representitive of standard JSON data types.
86+
* The root level data type of the value field. The data types are representative of standard JSON data types.
8787
*/
8888
'valueType': string;
8989
/**
@@ -459,7 +459,7 @@ export namespace AppEvent {
459459
*/
460460
'installedAppId': string;
461461
/**
462-
* A relative URL containing all of the query string parameters as returned by the third party oauth system. A SmartApp can parse the `urlPath` property to extract any senstive auth codes/tokens which can then be used to access the third party system.
462+
* A relative URL containing all of the query string parameters as returned by the third party oauth system. A SmartApp can parse the `urlPath` property to extract any sensitive auth codes/tokens which can then be used to access the third party system.
463463
*/
464464
'urlPath': string;
465465
}
@@ -490,7 +490,7 @@ export namespace AppEvent {
490490
*/
491491
'appId': string;
492492
/**
493-
* An HTTPS url that may be visted to confirm / activate an App registration.
493+
* An HTTPS url that may be visited to confirm / activate an App registration.
494494
*/
495495
'confirmationUrl': string;
496496
}

lib/pages/decimal-setting.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export class DecimalSetting extends SectionSetting<DecimalSetting> {
2020
max(value: number): DecimalSetting
2121

2222
/**
23-
* The minumum inclusive value the decimal can be set to.
23+
* The minimum inclusive value the decimal can be set to.
2424
*/
2525
min(value: number): DecimalSetting
2626

0 commit comments

Comments
 (0)