Skip to content

Commit

Permalink
Fix spelling of "comparison"
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys committed Aug 16, 2024
1 parent f578f70 commit 5c0c2c3
Show file tree
Hide file tree
Showing 22 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion src/client/event/keyboard/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { System } from '../../../system'
import isEqual from '../../../system/f/comparisson/Equals/f'
import isEqual from '../../../system/f/comparison/Equals/f'
import { keys } from '../../../system/f/object/Keys/f'
import { Dict } from '../../../types/Dict'
import { randomIdNotIn } from '../../../util/id'
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"icon": "equal",
"description": "equality",
"complexity": 3,
"tags": ["f", "comparisson"]
"tags": ["f", "comparison"]
},
"id": "85204bf6-6692-4686-a785-23127c0594b5",
"base": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"icon": "greater-than",
"description": "greater than operator",
"complexity": 3,
"tags": ["f", "comparisson"]
"tags": ["f", "comparison"]
},
"id": "1651ce6b-4db0-4787-9edf-f770b72d253c",
"base": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"icon": "greater-than-equal",
"description": "greater than equal operator",
"complexity": 3,
"tags": ["f", "comparisson"]
"tags": ["f", "comparison"]
},
"id": "c9e06816-0d2b-43ec-b7c8-d07563e19b6b",
"base": true,
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"icon": "less-than",
"description": "less than operator",
"complexity": 3,
"tags": ["f", "comparisson"]
"tags": ["f", "comparison"]
},
"id": "82c3cf2a-0855-4c6d-a4c4-807b0ce1fd35",
"base": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"icon": "less-than-equal",
"description": "less than or equal to operator",
"complexity": 3,
"tags": ["f", "comparisson"]
"tags": ["f", "comparison"]
},
"id": "e13f3090-62a6-4a3b-8401-c571cbf03526",
"base": true,
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"icon": "equal-not",
"description": "inequality",
"complexity": 3,
"tags": ["f", "comparisson"]
"tags": ["f", "comparison"]
},
"id": "bda175a9-a9d2-4282-9b50-1b008ae8a807",
"base": true,
Expand Down
2 changes: 1 addition & 1 deletion src/system/platform/component/app/Datum/Component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { stringify } from '../../../../../spec/stringify'
import { System } from '../../../../../system'
import { Dict } from '../../../../../types/Dict'
import { _keyUpdateTree } from '../../../../../util/keyUpdateTree'
import isEqual from '../../../../f/comparisson/Equals/f'
import isEqual from '../../../../f/comparison/Equals/f'
import DataTree from '../DataTree/Component'

export interface Props {
Expand Down
2 changes: 1 addition & 1 deletion src/system/platform/component/app/Editor/Component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ import { getTextLines, spaces } from '../../../../../util/text/getTextLines'
import swap from '../../../../core/array/Swap/f'
import forEachValueKey from '../../../../core/object/ForEachKeyValue/f'
import { keyCount } from '../../../../core/object/KeyCount/f'
import isEqual from '../../../../f/comparisson/Equals/f'
import isEqual from '../../../../f/comparison/Equals/f'
import deepMerge from '../../../../f/object/DeepMerge/f'
import _dissoc from '../../../../f/object/Delete/f'
import _keys, { keys } from '../../../../f/object/Keys/f'
Expand Down
2 changes: 1 addition & 1 deletion src/test/spec/parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import {
import _classes from '../../system/_classes'
import { ID_IDENTITY } from '../../system/_ids'
import _specs from '../../system/_specs'
import isEqual from '../../system/f/comparisson/Equals/f'
import isEqual from '../../system/f/comparison/Equals/f'
import { system } from '../util/system'

const CUSTOM_GRAPH_UNIT_STR =
Expand Down
28 changes: 14 additions & 14 deletions src/test/spec/reducers/spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -728,8 +728,8 @@ assert.deepEqual(
{
name: 'if a ≤ b',
units: {
lessthanequal: { id: 'system/f/comparisson/LessThanEqual' },
greaterthan: { id: 'system/f/comparisson/GreaterThan' },
lessthanequal: { id: 'system/f/comparison/LessThanEqual' },
greaterthan: { id: 'system/f/comparison/GreaterThan' },
if0: { id: 'system/f/control/If' },
if1: { id: 'system/f/control/If' },
},
Expand Down Expand Up @@ -763,8 +763,8 @@ assert.deepEqual(
{
name: 'if a ≤ b',
units: {
lessthanequal: { id: 'system/f/comparisson/LessThanEqual' },
greaterthan: { id: 'system/f/comparisson/GreaterThan' },
lessthanequal: { id: 'system/f/comparison/LessThanEqual' },
greaterthan: { id: 'system/f/comparison/GreaterThan' },
if0: { id: 'system/f/control/If' },
if1: { id: 'system/f/control/If' },
},
Expand Down Expand Up @@ -798,8 +798,8 @@ assert.deepEqual(
{
name: 'if else a ≤ b',
units: {
lessthanequal: { id: 'system/f/comparisson/LessThanEqual' },
greaterthan: { id: 'system/f/comparisson/GreaterThan' },
lessthanequal: { id: 'system/f/comparison/LessThanEqual' },
greaterthan: { id: 'system/f/comparison/GreaterThan' },
if0: { id: 'system/f/control/If' },
if1: { id: 'system/f/control/If' },
},
Expand Down Expand Up @@ -857,8 +857,8 @@ assert.deepEqual(
{
name: 'if else a ≤ b',
units: {
lessthanequal: { id: 'system/f/comparisson/LessThanEqual' },
greaterthan: { id: 'system/f/comparisson/GreaterThan' },
lessthanequal: { id: 'system/f/comparison/LessThanEqual' },
greaterthan: { id: 'system/f/comparison/GreaterThan' },
if0: { id: 'system/f/control/If' },
if1: { id: 'system/f/control/If' },
},
Expand Down Expand Up @@ -971,7 +971,7 @@ assert.deepEqual(
{
name: 'range',
units: {
lte: { id: 'system/f/comparisson/LessThan' },
lte: { id: 'system/f/comparison/LessThan' },
increment: { id: 'core/common/Increment' },
if0: { id: 'system/f/control/If' },
if1: { id: 'system/f/control/If' },
Expand Down Expand Up @@ -1013,7 +1013,7 @@ assert.deepEqual(
{
name: 'range',
units: {
lte: { id: 'system/f/comparisson/LessThan' },
lte: { id: 'system/f/comparison/LessThan' },
increment: { id: 'core/common/Increment' },
if0: { id: 'system/f/control/If' },
if1: { id: 'system/f/control/If' },
Expand Down Expand Up @@ -1256,8 +1256,8 @@ assert.deepEqual(
{
name: 'if a ≤ b',
units: {
lessthanequal: { id: 'system/f/comparisson/LessThanEqual' },
greaterthan: { id: 'system/f/comparisson/GreaterThan' },
lessthanequal: { id: 'system/f/comparison/LessThanEqual' },
greaterthan: { id: 'system/f/comparison/GreaterThan' },
if0: { id: 'system/f/control/If' },
if1: { id: 'system/f/control/If' },
},
Expand All @@ -1281,8 +1281,8 @@ assert.deepEqual(
{
name: 'if a ≤ b',
units: {
lessthanequal: { id: 'system/f/comparisson/LessThanEqual' },
greaterthan: { id: 'system/f/comparisson/GreaterThan' },
lessthanequal: { id: 'system/f/comparison/LessThanEqual' },
greaterthan: { id: 'system/f/comparison/GreaterThan' },
if0: { id: 'system/f/control/If' },
if1: { id: 'system/f/control/If' },
},
Expand Down
2 changes: 1 addition & 1 deletion src/test/system/f/comparisson/Equals.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as assert from 'assert'
import Equals from '../../../../system/f/comparisson/Equals'
import Equals from '../../../../system/f/comparison/Equals'
import { system } from '../../../util/system'

const equals = new Equals(system)
Expand Down
2 changes: 1 addition & 1 deletion src/test/system/f/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import './arithmetic'
import './array'
import './bitwise'
import './comparisson'
import './comparison'
import './control'
import './data'
import './math'
Expand Down
2 changes: 1 addition & 1 deletion src/test/util/object.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import isEqual from '../../system/f/comparisson/Equals/f'
import isEqual from '../../system/f/comparison/Equals/f'
import assert from '../../util/assert'
import { clone, deepDestroy } from '../../util/object'

Expand Down
2 changes: 1 addition & 1 deletion src/util/assert.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import isEqual from '../system/f/comparisson/Equals/f'
import isEqual from '../system/f/comparison/Equals/f'

export function assert(test: boolean, message: string = ''): void {
if (!test) {
Expand Down

0 comments on commit 5c0c2c3

Please sign in to comment.