@@ -161,14 +161,14 @@ export interface AdapterClass {
161161 /**
162162 * Extend an object and create it if it might not exist
163163 *
164- * @deprecated use `adapter.extendObject` without callback instead
164+ * @deprecated use `adapter.extendObject` without a callback instead
165165 */
166166 extendObjectAsync (
167167 id : string ,
168168 objPart : ioBroker . PartialObject ,
169169 options ?: ioBroker . ExtendObjectOptions ,
170170 ) : 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. */
172172 setExecutableCapabilities (
173173 execPath : string ,
174174 capabilities : string [ ] ,
@@ -1606,7 +1606,7 @@ export class AdapterClass extends EventEmitter {
16061606 * ...
16071607 * }
16081608 * ```
1609-
1609+
16101610 * @param featureName the name of the feature to check
16111611 * @returns true/false if the feature is in the list of supported features
16121612 */
@@ -2596,7 +2596,7 @@ export class AdapterClass extends EventEmitter {
25962596 }
25972597
25982598 /**
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
26002600 */
26012601 private async getSystemSecret ( ) : Promise < string > {
26022602 if ( this . _systemSecret !== undefined ) {
@@ -2624,7 +2624,7 @@ export class AdapterClass extends EventEmitter {
26242624 ) : ioBroker . Timeout | undefined ;
26252625 /**
26262626 * 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
26282628 * does not work after unload has been called
26292629 *
26302630 * @param cb - timer callback
0 commit comments