summaryrefslogtreecommitdiff
path: root/src/prelude/relation.ts
diff options
context:
space:
mode:
authorMeiMei <30769358+mei23@users.noreply.github.com>2018-12-19 22:38:27 +0900
committerAcid Chicken (硫酸鶏) <root@acid-chicken.com>2018-12-19 22:38:27 +0900
commitc03e2dfbc00bf49de6e9651086ead1966dd127a2 (patch)
treeba1b22e4ad956a46456ff33c97b12f79fdf15702 /src/prelude/relation.ts
parentHide hidden contents in welcome timeline (#3682) (diff)
downloadsharkey-c03e2dfbc00bf49de6e9651086ead1966dd127a2.tar.gz
sharkey-c03e2dfbc00bf49de6e9651086ead1966dd127a2.tar.bz2
sharkey-c03e2dfbc00bf49de6e9651086ead1966dd127a2.zip
Change naming (#3678)
* Change naming * x to a
Diffstat (limited to 'src/prelude/relation.ts')
-rw-r--r--src/prelude/relation.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/prelude/relation.ts b/src/prelude/relation.ts
index b3aedc5ffc..1f4703f52f 100644
--- a/src/prelude/relation.ts
+++ b/src/prelude/relation.ts
@@ -1,5 +1,5 @@
-export type Predicate<T> = (x: T) => boolean;
+export type Predicate<T> = (a: T) => boolean;
-export type Relation<T, U> = (x: T, y: U) => boolean;
+export type Relation<T, U> = (a: T, b: U) => boolean;
export type EndoRelation<T> = Relation<T, T>;