Skip to content

Commit ca3c5f9

Browse files
committed
fix typo
[ci skip]
1 parent b356745 commit ca3c5f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

export-server/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function localPath(absolutePath) {
6464
// The following line basically replaces ALL occurrences of backward slash
6565
// with forward slash and all space characters with the URL-encoded version
6666
// for that (%20). We cannot simply do a String.replace(), because that
67-
// only replaces the first occurence.
67+
// only replaces the first occurrence.
6868
return '/' + absolutePath.split(path.sep).join('/').split(' ').join('%20');
6969
} else {
7070
return absolutePath;

0 commit comments

Comments
 (0)