Browse Source

Update util.js (#4700)

Typo fix
Andy 9 years ago
parent
commit
b708c04988
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/shared/util.js

+ 1 - 1
src/shared/util.js

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