@@ -161,14 +161,14 @@ export interface AdapterClass {
161
161
/**
162
162
* Extend an object and create it if it might not exist
163
163
*
164
- * @deprecated use `adapter.extendObject` without callback instead
164
+ * @deprecated use `adapter.extendObject` without a callback instead
165
165
*/
166
166
extendObjectAsync (
167
167
id : string ,
168
168
objPart : ioBroker . PartialObject ,
169
169
options ?: ioBroker . ExtendObjectOptions ,
170
170
) : ioBroker . SetObjectPromise ;
171
- /** Set capabilities of the given executable. Only works on Linux systems. */
171
+ /** Set the capabilities of the given executable. Only works on Linux systems. */
172
172
setExecutableCapabilities (
173
173
execPath : string ,
174
174
capabilities : string [ ] ,
@@ -1606,7 +1606,7 @@ export class AdapterClass extends EventEmitter {
1606
1606
* ...
1607
1607
* }
1608
1608
* ```
1609
-
1609
+
1610
1610
* @param featureName the name of the feature to check
1611
1611
* @returns true/false if the feature is in the list of supported features
1612
1612
*/
@@ -2596,7 +2596,7 @@ export class AdapterClass extends EventEmitter {
2596
2596
}
2597
2597
2598
2598
/**
2599
- * Get the system secret, after retrived once it will be read from cache
2599
+ * Get the system secret, after retrieved once it will be read from the cache
2600
2600
*/
2601
2601
private async getSystemSecret ( ) : Promise < string > {
2602
2602
if ( this . _systemSecret !== undefined ) {
@@ -2624,7 +2624,7 @@ export class AdapterClass extends EventEmitter {
2624
2624
) : ioBroker . Timeout | undefined ;
2625
2625
/**
2626
2626
* Same as setTimeout,
2627
- * but it clears the running timers during the unload process
2627
+ * but it clears the running timers during the unloading process
2628
2628
* does not work after unload has been called
2629
2629
*
2630
2630
* @param cb - timer callback
0 commit comments