Skip to content

Commit 2782064

Browse files
authored
Update postprocess.js (google#195)
Fix typo: occuring -> occurring
1 parent d49dfe4 commit 2782064

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

demos/palm/web/textfx/src/lib/postprocess.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ const deduplicate = outputs => {
103103
}
104104

105105
// Remove duplicates in an array of strings, but for each element
106-
// only the segment occuring BEFORE the specified character is evaluated
106+
// only the segment occurring BEFORE the specified character is evaluated
107107
const deduplicateBasedOnSegmentBeforeChar = (outputs, char) => {
108108
const segments = []
109109
outputs.forEach(item => {
@@ -121,7 +121,7 @@ const deduplicateBasedOnSegmentBeforeChar = (outputs, char) => {
121121
}
122122

123123
// Remove duplicates in an array of strings, but for each element,
124-
// only the segment occuring AFTER the specified character is evaluated
124+
// only the segment occurring AFTER the specified character is evaluated
125125
const deduplicateBasedOnSegmentAfterChar = (outputs, char) => {
126126
const segments = []
127127
outputs.forEach(item => {

0 commit comments

Comments
 (0)