From 85d0e3d6d843f9f8b4bcbbdf275db34cca20c35c Mon Sep 17 00:00:00 2001 From: BethanyG Date: Fri, 19 Mar 2021 09:56:36 -0700 Subject: [PATCH] Corrected JSON formatting error. `URL` --> `url. Python had a configlet linting error : `Invalid capitalization of the url key:`, as referenced in https://github.com/exercism/configlet/pull/171. This fixes that error. --- concepts/numbers/links.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concepts/numbers/links.json b/concepts/numbers/links.json index 18076be1af..1082bd965a 100644 --- a/concepts/numbers/links.json +++ b/concepts/numbers/links.json @@ -32,7 +32,7 @@ "description": "cmath: mathematical operations for complex numbers" }, { - "URL": "https://docs.python.org/3/library/numeric.html", + "url": "https://docs.python.org/3/library/numeric.html", "description": "Pythons Numerical and Mathematical Modules" } ]