From fdb181dad43013b033217e982fce58f999f64c49 Mon Sep 17 00:00:00 2001 From: mpaulson Date: Thu, 11 Aug 2022 21:29:52 -0600 Subject: [PATCH] compiler wont defeat me --- src/array-test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/array-test.ts b/src/array-test.ts index 4bc3dd2..79975dd 100644 --- a/src/array-test.ts +++ b/src/array-test.ts @@ -33,7 +33,7 @@ function pop(number: number) { function get(idx: number) { return function() { - a[idx]; + return a[idx]; }; }