]> Lady’s Gitweb - Pisces/blobdiff - iri.js
Make base32 handling less forgiving
[Pisces] / iri.js
diff --git a/iri.js b/iri.js
index de23d5de40953ed88a0fb33ea5e9cf3379a6f92b..47b1fb83edf81dfa56e4594a8f3e4ae17c5f1c34 100644 (file)
--- a/iri.js
+++ b/iri.js
@@ -168,7 +168,7 @@ export const {
   /**
    * Recomposes an (L·E·)I·R·I reference from its component parts.
    *
-   * See §5.3 of R·F·C3986.
+   * See §5.3 of R·F·C 3986.
    */
   composeReference,
 
@@ -193,7 +193,7 @@ export const {
    * Removes all dot segments ("." or "..") from the provided
    * (L·E·)I·R·I.
    *
-   * See §5.2.4 of R·F·C3986.
+   * See §5.2.4 of R·F·C 3986.
    */
   removeDotSegments,
 } = (() => {
@@ -535,7 +535,7 @@ export const {
  * Returns the result of merging the provided reference path with the
  * provided base path.
  *
- * See §5.2.3 of R·F·C3986.
+ * See §5.2.3 of R·F·C 3986.
  */
 export const mergePaths = (base, reference) => {
   const baseStr = `${base}` || "/";
@@ -592,7 +592,7 @@ export const {
  * Resolves the provided reference relative to the provided base
  * (L·E·)I·R·I.
  *
- * See §5.2 of R·F·C3986.
+ * See §5.2 of R·F·C 3986.
  */
 export const resolveReference = (R, Base = location ?? "") => {
   const {
This page took 0.021716 seconds and 4 git commands to generate.