fix(curriculum): change spinal case converter lab example in user story (#65005)

This commit is contained in:
Aditya Singh
2026-01-06 20:56:06 +05:30
committed by GitHub
parent 11cf322568
commit f95180ef41

View File

@@ -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--