diff options
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 |
commit | 7717112af764f22508f55a9144a212dd0c5533ed (patch) | |
tree | d15f17e0f9a2722cdccbe3dfca15b53f1fffbe7c /src | |
parent | caab765ef3e4eb10e020adb53e3af4036c61e78d (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.
Diffstat (limited to 'src')
-rw-r--r-- | src/url-spec.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/url-spec.js b/src/url-spec.js index 2dd63509..ec971c0c 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 = { |