@matter/general 0.16.0-alpha.0-20251209-d6072d23e → 0.16.0-alpha.0-20251211-0f80042cf

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -37,7 +37,7 @@ export declare class CancelablePromise<T = void> implements Promise<T>, Cancelab
37
37
  */
38
38
  cancel(reason?: unknown): void;
39
39
  /**
40
- * Implement cancelation. This is only invoked if the promise has not resolved.
40
+ * Implement cancellation. This is only invoked if the promise has not resolved.
41
41
  *
42
42
  * Throwing causes the promise to reject with the error thrown. The default implementation rethrows {@link reason}.
43
43
  *
@@ -86,7 +86,7 @@ class CancelablePromise {
86
86
  }
87
87
  }
88
88
  /**
89
- * Implement cancelation. This is only invoked if the promise has not resolved.
89
+ * Implement cancellation. This is only invoked if the promise has not resolved.
90
90
  *
91
91
  * Throwing causes the promise to reject with the error thrown. The default implementation rethrows {@link reason}.
92
92
  *
@@ -37,7 +37,7 @@ export declare class CancelablePromise<T = void> implements Promise<T>, Cancelab
37
37
  */
38
38
  cancel(reason?: unknown): void;
39
39
  /**
40
- * Implement cancelation. This is only invoked if the promise has not resolved.
40
+ * Implement cancellation. This is only invoked if the promise has not resolved.
41
41
  *
42
42
  * Throwing causes the promise to reject with the error thrown. The default implementation rethrows {@link reason}.
43
43
  *
@@ -63,7 +63,7 @@ class CancelablePromise {
63
63
  }
64
64
  }
65
65
  /**
66
- * Implement cancelation. This is only invoked if the promise has not resolved.
66
+ * Implement cancellation. This is only invoked if the promise has not resolved.
67
67
  *
68
68
  * Throwing causes the promise to reject with the error thrown. The default implementation rethrows {@link reason}.
69
69
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matter/general",
3
- "version": "0.16.0-alpha.0-20251209-d6072d23e",
3
+ "version": "0.16.0-alpha.0-20251211-0f80042cf",
4
4
  "description": "Non-Matter support for Matter.js",
5
5
  "keywords": [
6
6
  "iot",
@@ -36,7 +36,7 @@
36
36
  "@noble/curves": "^2.0.1"
37
37
  },
38
38
  "devDependencies": {
39
- "@matter/testing": "0.16.0-alpha.0-20251209-d6072d23e"
39
+ "@matter/testing": "0.16.0-alpha.0-20251211-0f80042cf"
40
40
  },
41
41
  "files": [
42
42
  "dist/**/*",
@@ -94,7 +94,7 @@ export class CancelablePromise<T = void> implements Promise<T>, Cancelable {
94
94
  }
95
95
 
96
96
  /**
97
- * Implement cancelation. This is only invoked if the promise has not resolved.
97
+ * Implement cancellation. This is only invoked if the promise has not resolved.
98
98
  *
99
99
  * Throwing causes the promise to reject with the error thrown. The default implementation rethrows {@link reason}.
100
100
  *