Skip to content

Commit 36f93bd

Browse files
authored
fix: typo in comments (vuejs#10)
1 parent 95af63b commit 36f93bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/renderTemplate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function renderTemplate(src, dest) {
1717
const stats = fs.statSync(src)
1818

1919
if (stats.isDirectory()) {
20-
// if it's a directory, render its subdirectories and files recusively
20+
// if it's a directory, render its subdirectories and files recursively
2121
fs.mkdirSync(dest, { recursive: true })
2222
for (const file of fs.readdirSync(src)) {
2323
renderTemplate(path.resolve(src, file), path.resolve(dest, file))

0 commit comments

Comments
 (0)