diff --git a/curriculum/challenges/english/blocks/lab-spinal-case-converter/a103376db3ba46b2d50db289.md b/curriculum/challenges/english/blocks/lab-spinal-case-converter/a103376db3ba46b2d50db289.md index ff28ebf0857..23df8cedb0c 100644 --- a/curriculum/challenges/english/blocks/lab-spinal-case-converter/a103376db3ba46b2d50db289.md +++ b/curriculum/challenges/english/blocks/lab-spinal-case-converter/a103376db3ba46b2d50db289.md @@ -17,7 +17,7 @@ In this lab, you will create a function that converts a given string to spinal c 1. You should create a function named `spinalCase`. 2. The `spinalCase` function should take a single argument, a string. -3. The `spinalCase` function should return the string in spinal case format. For example, if the argument is `JavaScript is awesome`, the function should return `javascript-is-awesome`. +3. The `spinalCase` function should return the string in spinal case format. For example, if the argument is `ProductLanding page`, the function should return `product-landing-page`. # --hints--