« get me outta code hell

data: global Thing symbol cleanup - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data/things
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2024-01-20 16:33:17 -0400
committer(quasar) nebula <qznebula@protonmail.com>2024-01-30 07:59:39 -0400
commite57e540bd57ea9b25cf785327054f344347c40b1 (patch)
treecc06e3c24d8eaf23bde98c6d0d2dedd8290b8e14 /src/data/things
parent296a4961a951e44ea53509391ad225d1491197f9 (diff)
data: global Thing symbol cleanup
Diffstat (limited to 'src/data/things')
-rw-r--r--src/data/things/thing.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/data/things/thing.js b/src/data/things/thing.js
index 42971c0..e1f488e 100644
--- a/src/data/things/thing.js
+++ b/src/data/things/thing.js
@@ -9,10 +9,10 @@ import CacheableObject from './cacheable-object.js';
 
 export default class Thing extends CacheableObject {
   static referenceType = Symbol.for('Thing.referenceType');
-  static friendlyName = Symbol.for(`Thing.friendlyName`);
+  static friendlyName = Symbol.for('Thing.friendlyName');
 
-  static getPropertyDescriptors = Symbol('Thing.getPropertyDescriptors');
-  static getSerializeDescriptors = Symbol('Thing.getSerializeDescriptors');
+  static getPropertyDescriptors = Symbol.for('Thing.getPropertyDescriptors');
+  static getSerializeDescriptors = Symbol.for('Thing.getSerializeDescriptors');
 
   static yamlDocumentSpec = Symbol.for('Thing.yamlDocumentSpec');