From ec8cd0aba62d0d7644f6083c240270364c270d92 Mon Sep 17 00:00:00 2001 From: Glen Whitney Date: Wed, 2 Apr 2025 05:18:39 +0000 Subject: [PATCH] Update Item Specifications --- Item-Specifications.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Item-Specifications.md b/Item-Specifications.md index bc816d1..4cf0f73 100644 --- a/Item-Specifications.md +++ b/Item-Specifications.md @@ -41,7 +41,7 @@ Here, onType creates one or more "patterns" (an array of types to match against Next, let's look at a method like addition of two complex numbers that accepts many types (any instantiation of Complex) but not all types, and has dependencies: ``` -export const add = onType([Complex, Complex]], (math, [T, U]) => { +export const add = onType([Complex, Complex], (math, [T, U]) => { const add = math.add.resolve(T.Base, U.Base) const complex = math.complex.resolve(add.returns, add.returns) return Returns(