File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
demos/palm/web/textfx/src/lib Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
107107const 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
125125const deduplicateBasedOnSegmentAfterChar = ( outputs , char ) => {
126126 const segments = [ ]
127127 outputs . forEach ( item => {
You can’t perform that action at this time.
0 commit comments