]> Lady’s Gitweb - Pisces/commitdiff
Remove irregular whitespace
authorLady <redacted>
Sun, 25 Sep 2022 07:52:56 +0000 (00:52 -0700)
committerLady <redacted>
Fri, 12 May 2023 03:56:48 +0000 (20:56 -0700)
collection.js
deno.json
iri.js

index 38b048cc063b61475366442a7e6488cca18fe4e4..7319b7314399a71ee5bf028c7ae49ea22593d952 100644 (file)
@@ -35,7 +35,7 @@ export const {
  * numeric index string; otherwise, returns undefined.
  *
  * There is no clamping of the numeric index, but note that numbers
- * above 2^53 − 1 are not safe nor valid integer indices.
+ * above 2^53 − 1 are not safe nor valid integer indices.
  */
 export const canonicalNumericIndexString = ($) => {
   if (typeof $ !== "string") {
@@ -207,7 +207,7 @@ export const isArraylikeObject = ($) => {
  *
  * The definition of “collection” used by Piscēs is similar to
  * Ecmascript’s definition of an arraylike object, but it differs in
- * a few ways:—
+ * a few ways :—
  *
  * - It requires the provided value to be a proper object.
  *
index 5d63df686fcf33bf92cbeacb71ade20c330fb12b..548f1fea373746fbf03798804ccb69d7b86acc7f 100644 (file)
--- a/deno.json
+++ b/deno.json
@@ -1,8 +1,4 @@
 {
   "fmt": { "options": { "lineWidth": 71 } },
-  "lint": {
-    "rules": {
-      "exclude": ["constructor-super", "no-irregular-whitespace"]
-    }
-  }
+  "lint": { "rules": { "exclude": ["constructor-super"] } }
 }
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.046419 seconds and 4 git commands to generate.