Skip to content

Commit 89cde25

Browse files
EdCauntmloubout
authored andcommitted
misc: Use less esoteric comment phrasing
1 parent c725b2f commit 89cde25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

devito/passes/clusters/cse.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,8 +235,8 @@ def _compact(exprs, exclude):
235235
# Find all the CTemps in expression right-hand-sides without removing duplicates
236236
ctemps = retrieve_ctemps(e.rhs for e in exprs)
237237

238-
# If there are ctemps in the expressions, then add any to the mapper which only
239-
# appear once
238+
# If there are ctemps in the expressions, then add any that only appear once to
239+
# the mapper
240240
if ctemps:
241241
ctemp_count = Counter(ctemps)
242242
mapper.update({e.lhs: e.rhs for e in candidates

0 commit comments

Comments
 (0)