« get me outta code hell

url-spec: generalize .path as '<>', not '<>/' - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2024-05-06 07:58:53 -0300
committer(quasar) nebula <qznebula@protonmail.com>2024-05-06 07:58:53 -0300
commit7717112af764f22508f55a9144a212dd0c5533ed (patch)
treed15f17e0f9a2722cdccbe3dfca15b53f1fffbe7c
parentcaab765ef3e4eb10e020adb53e3af4036c61e78d (diff)
url-spec: generalize .path as '<>', not '<>/'
This doesn't appear to have broken anything, somehow, but it
wasn't supposed to be '<>/' in the first place - that was just
a typo.
-rw-r--r--src/url-spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/url-spec.js b/src/url-spec.js
index 2dd6350..ec971c0 100644
--- a/src/url-spec.js
+++ b/src/url-spec.js
@@ -2,7 +2,7 @@ import {withEntries} from '#sugar';
 
 const genericPaths = {
   root: '',
-  path: '<>/',
+  path: '<>',
 };
 
 const urlSpec = {