Skip to content

Commit 0b7ca5f

Browse files
committed
Update javascript string snippets
- To Camel Case - To Kebab Case - To Pascal Case - To Path Case - To Snake Case
1 parent 3d19219 commit 0b7ca5f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

snippets/javascript/string/to-camel-case.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export const metadata = {
22
name: "To Camel Case",
3-
description: "Converts a string to camel casing. For example, \"hello world\" becomes \"helloWorld\".",
3+
description: "Converts a string to camel casing. For example, 'hello world' becomes 'helloWorld'.",
44
keywords: ["string", "casing"],
55
contributors: ["itsbrunodev"],
66
};

snippets/javascript/string/to-kebab-case.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export const metadata = {
22
name: "To Kebab Case",
3-
description: "Converts a string to kebab casing. For example, \"hello world\" becomes \"hello-world\".",
3+
description: "Converts a string to kebab casing. For example, 'hello world' becomes 'hello-world'.",
44
keywords: ["string", "casing"],
55
contributors: ["itsbrunodev"],
66
};

snippets/javascript/string/to-pascal-case.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export const metadata = {
22
name: "To Pascal Case",
3-
description: "Converts a string to pascal casing. For example, \"hello world\" becomes \"HelloWorld\".",
3+
description: "Converts a string to pascal casing. For example, 'hello world' becomes 'HelloWorld'.",
44
keywords: ["string", "casing"],
55
contributors: ["itsbrunodev"],
66
};

snippets/javascript/string/to-path-case.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export const metadata = {
22
name: "To Path Case",
3-
description: "Converts a string to path casing. For example, \"hello world\" becomes \"hello/world\".",
3+
description: "Converts a string to path casing. For example, 'hello world' becomes 'hello/world'.",
44
keywords: ["string", "casing"],
55
contributors: ["itsbrunodev"],
66
};

snippets/javascript/string/to-snake-case.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export const metadata = {
22
name: "To Snake Case",
3-
description: "Converts a string to snake casing. For example, \"hello world\" becomes \"hello_world\".",
3+
description: "Converts a string to snake casing. For example, 'hello world' becomes 'hello_world'.",
44
keywords: ["string", "casing"],
55
contributors: ["itsbrunodev"],
66
};

0 commit comments

Comments
 (0)