diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-04-24 11:14:38 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-04-24 11:14:38 -0300 |
commit | 8dc4763384100c8f126577586ec34e09aa47fe14 (patch) | |
tree | 4612c1cfbbad380d5c2bcf1f1419dae06e0744a7 /src/data/composite/wiki-data/withReverseContributionList.js | |
parent | 716798ebdad95fcc5670228917ff2ef92c82ee25 (diff) |
data, yaml: basic who/what -> artist/annotation
Diffstat (limited to 'src/data/composite/wiki-data/withReverseContributionList.js')
-rw-r--r-- | src/data/composite/wiki-data/withReverseContributionList.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data/composite/wiki-data/withReverseContributionList.js b/src/data/composite/wiki-data/withReverseContributionList.js index eccb58b7..c5dcad07 100644 --- a/src/data/composite/wiki-data/withReverseContributionList.js +++ b/src/data/composite/wiki-data/withReverseContributionList.js @@ -58,10 +58,10 @@ export default templateCompositeFrom({ for (const referencingThing of data) { const referenceList = referencingThing[list]; - // Destructuring {who} is the only unique part of the + // Destructuring {artist} is the only unique part of the // withReverseContributionList implementation, compared to // withReverseReferneceList. - for (const {who: referencedThing} of referenceList) { + for (const {artist: referencedThing} of referenceList) { if (cacheRecord.has(referencedThing)) { cacheRecord.get(referencedThing).push(referencingThing); } else { |