From dac533f136d230b9187ee9eb64352b64011b4ced Mon Sep 17 00:00:00 2001 From: Peter Harpending Date: Sat, 12 Aug 2023 14:55:38 -0600 Subject: [PATCH] make comment language more polite --- jrx/src/b_lib.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jrx/src/b_lib.ts b/jrx/src/b_lib.ts index 067a5b0..6d264ea 100644 --- a/jrx/src/b_lib.ts +++ b/jrx/src/b_lib.ts @@ -361,13 +361,13 @@ bi_address_reply // so we make the "object" in the "current" field // this is so dumb but let current_obj = {}; - // @ts-ignore shut the fuck up i know this is stupid + // @ts-ignore shut up tsc i know this is stupid it's not my fault current_obj[current_pubkey_str] = {}; // make the object in the "connected" field let connected_obj = {}; for (let this_pubkey_str of other_pubkey_strs) { - // @ts-ignore shut the fuck up i know this is stupid + // @ts-ignore shut up tsc i know this is stupid it's not my fault connected_obj[this_pubkey_str] = {}; }