Update util.js (#4700)

Typo fix
This commit is contained in:
Andy 2017-01-12 13:43:04 +00:00 committed by Eduardo San Martin Morote
parent 7131bc4815
commit b708c04988

View File

@ -82,7 +82,7 @@ export function cached<F: Function> (fn: F): F {
}
/**
* Camelize a hyphen-delmited string.
* Camelize a hyphen-delimited string.
*/
const camelizeRE = /-(\w)/g
export const camelize = cached((str: string): string => {