diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-08-28 13:19:57 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-09-05 21:02:53 -0300 |
commit | 29580733b79872333f3f9e45d50d987218d334ea (patch) | |
tree | 6f6cb6ca7a7a7c2a7c1840f28aede82ebbd9cad1 /src/data/things | |
parent | 083a4b8c3a0e545a2d8195255d57c5b7e0c49028 (diff) |
data: fix annotation typo
Diffstat (limited to 'src/data/things')
-rw-r--r-- | src/data/things/thing.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data/things/thing.js b/src/data/things/thing.js index 892a3a4b..78ff4c81 100644 --- a/src/data/things/thing.js +++ b/src/data/things/thing.js @@ -1198,7 +1198,7 @@ export default class Thing extends CacheableObject { if (fromDependency) { return { - annotation: `Thing.composite.withResultOfCommonComparison.fromDependency`, + annotation: `Thing.composite.withResultOfAvailabilityCheck.fromDependency`, flags: {expose: true, compose: true}, expose: { mapDependencies: {from: fromDependency}, @@ -1210,7 +1210,7 @@ export default class Thing extends CacheableObject { }; } else { return { - annotation: `Thing.composite.withResultOfCommonComparison.fromUpdateValue`, + annotation: `Thing.composite.withResultOfAvailabilityCheck.fromUpdateValue`, flags: {expose: true, compose: true}, expose: { mapContinuation: {to}, |