diff --git a/client/i18n/locales/english/intro.json b/client/i18n/locales/english/intro.json index a57118cb83b..3db792358c2 100644 --- a/client/i18n/locales/english/intro.json +++ b/client/i18n/locales/english/intro.json @@ -3604,10 +3604,10 @@ "In this lab, you will create a function that looks through an array of objects and returns an array of all objects that have matching property and value pairs." ] }, - "lab-sum-all-primes-calculator": { + "lab-prime-number-sum-calculator": { "title": "Build a Prime Number Sum Calculator", "intro": [ - "In this lab you will build a sum all primes calculator that takes a number and returns the sum of all prime numbers that are less than or equal to that number." + "In this lab you will build a prime number sum calculator that takes a number and returns the sum of all prime numbers that are less than or equal to that number." ] }, "lab-range-based-lcm-calculator": { diff --git a/client/src/pages/learn/full-stack-developer/lab-prime-number-sum-calculator/index.md b/client/src/pages/learn/full-stack-developer/lab-prime-number-sum-calculator/index.md new file mode 100644 index 00000000000..5e47e19895e --- /dev/null +++ b/client/src/pages/learn/full-stack-developer/lab-prime-number-sum-calculator/index.md @@ -0,0 +1,9 @@ +--- +title: Introduction to the Build a Prime Number Sum Calculator +block: lab-prime-number-sum-calculator +superBlock: full-stack-developer +--- + +## Introduction to the Build a Prime Number Sum Calculator + +In this lab you will build a prime number sum calculator that takes a number and returns the sum of all prime numbers that are less than or equal to that number. diff --git a/client/src/pages/learn/full-stack-developer/lab-sum-all-primes-calculator/index.md b/client/src/pages/learn/full-stack-developer/lab-sum-all-primes-calculator/index.md deleted file mode 100644 index bff32062cc2..00000000000 --- a/client/src/pages/learn/full-stack-developer/lab-sum-all-primes-calculator/index.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Introduction to the Build a Sum All Primes Calculator -block: lab-sum-all-primes-calculator -superBlock: full-stack-developer ---- - -## Introduction to the Build a Sum All Primes Calculator - -In this lab you will build a sum all primes calculator that takes a number and returns the sum of all prime numbers that are less than or equal to that number. diff --git a/curriculum/challenges/english/blocks/lab-sum-all-primes-calculator/a3bfc1673c0526e06d3ac698.md b/curriculum/challenges/english/blocks/lab-prime-number-sum-calculator/a3bfc1673c0526e06d3ac698.md similarity index 94% rename from curriculum/challenges/english/blocks/lab-sum-all-primes-calculator/a3bfc1673c0526e06d3ac698.md rename to curriculum/challenges/english/blocks/lab-prime-number-sum-calculator/a3bfc1673c0526e06d3ac698.md index f37e7aca10a..70c6e079145 100644 --- a/curriculum/challenges/english/blocks/lab-sum-all-primes-calculator/a3bfc1673c0526e06d3ac698.md +++ b/curriculum/challenges/english/blocks/lab-prime-number-sum-calculator/a3bfc1673c0526e06d3ac698.md @@ -1,8 +1,8 @@ --- id: a3bfc1673c0526e06d3ac698 -title: Build a Sum All Primes Calculator +title: Build a Prime Number Sum Calculator challengeType: 26 -dashedName: build-a-sum-all-primes-calculator +dashedName: build-a-prime-number-sum-calculator --- # --description-- diff --git a/curriculum/structure/blocks/lab-sum-all-primes-calculator.json b/curriculum/structure/blocks/lab-prime-number-sum-calculator.json similarity index 59% rename from curriculum/structure/blocks/lab-sum-all-primes-calculator.json rename to curriculum/structure/blocks/lab-prime-number-sum-calculator.json index 9fc27a1e6f0..36dfa69a8b1 100644 --- a/curriculum/structure/blocks/lab-sum-all-primes-calculator.json +++ b/curriculum/structure/blocks/lab-prime-number-sum-calculator.json @@ -1,7 +1,7 @@ { - "name": "Build a Sum All Primes Calculator", + "name": "Build a Prime Number Sum Calculator", "isUpcomingChange": false, - "dashedName": "lab-sum-all-primes-calculator", + "dashedName": "lab-prime-number-sum-calculator", "helpCategory": "JavaScript", "blockLayout": "link", "blockType": "lab", @@ -9,7 +9,7 @@ "challengeOrder": [ { "id": "a3bfc1673c0526e06d3ac698", - "title": "Build a Sum All Primes Calculator" + "title": "Build a Prime Number Sum Calculator" } ] } diff --git a/curriculum/structure/superblocks/full-stack-developer.json b/curriculum/structure/superblocks/full-stack-developer.json index 170de322a9d..f53cc133bc6 100644 --- a/curriculum/structure/superblocks/full-stack-developer.json +++ b/curriculum/structure/superblocks/full-stack-developer.json @@ -413,7 +413,7 @@ "lab-symmetric-difference", "lab-value-remover-function", "lab-matching-object-filter", - "lab-sum-all-primes-calculator", + "lab-prime-number-sum-calculator", "lab-range-based-lcm-calculator", "lab-deep-flattening-tool", "lab-all-true-property-validator",