From 3b836e5811c54772d52f34ba9cee36994675b364 Mon Sep 17 00:00:00 2001 From: Katrina Owen Date: Sat, 29 Oct 2022 08:34:18 +0200 Subject: [PATCH] Fix incorrect source url for nth-prime (#2141) The nth-prime exercise is inspired by problem 7 at Euler, not Problem 8. This got messed up in the http-to-https conversion in #2137. --- exercises/nth-prime/metadata.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/nth-prime/metadata.toml b/exercises/nth-prime/metadata.toml index 8ca4b4c896..62451c5f00 100644 --- a/exercises/nth-prime/metadata.toml +++ b/exercises/nth-prime/metadata.toml @@ -1,4 +1,4 @@ title = "Nth Prime" blurb = "Given a number n, determine what the nth prime is." source = "A variation on Problem 7 at Project Euler" -source_url = "https://projecteuler.net/problem=8" +source_url = "https://projecteuler.net/problem=7"