Skip to content

Commit 00f7c0e

Browse files
committed
Merge pull request #1503 from mgreter/bugfix/merge-final-ops
Fix copy paste error in `mergeFinalOps`
2 parents 32796a7 + 35ddc9a commit 00f7c0e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/extend.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1032,8 +1032,8 @@ namespace Sass {
10321032
res.collection()->push_front(op2);
10331033
res.collection()->push_front(sel2);
10341034

1035-
seq2.collection()->push_back(sel1);
1036-
seq2.collection()->push_back(op1);
1035+
seq1.collection()->push_back(sel1);
1036+
seq1.collection()->push_back(op1);
10371037

10381038
} else if (op2.combinator() == Complex_Selector::PARENT_OF && (op1.combinator() == Complex_Selector::PRECEDES || op1.combinator() == Complex_Selector::ADJACENT_TO)) {
10391039

0 commit comments

Comments
 (0)