2
0
mirror of https://github.com/iconify/iconify.git synced 2024-09-07 19:19:02 +00:00

chore: fix typo in comment

This commit is contained in:
Vjacheslav Trushkin 2023-05-29 22:17:42 +03:00
parent 011427d072
commit e77a0c5ed1

View File

@ -25,7 +25,7 @@ export function camelToKebab(key: string): string {
}
/**
* Convert string string to snake-case
* Convert camelCase string to snake-case
*/
export function snakelize(str: string): string {
const kebab = camelToKebab(str);