Skip to content

Commit deaf1de

Browse files
committed
Fix typo
1 parent e94a5c2 commit deaf1de

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/Compiler.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,15 +316,17 @@ protected function makeOutputBlock($type, $selectors = null)
316316
$out->parent = $this->scope;
317317
$out->selectors = $selectors;
318318
$out->depth = $this->env->depth;
319+
319320
if ($this->env->block instanceof Block) {
320321
$out->sourceName = $this->env->block->sourceName;
321322
$out->sourceLine = $this->env->block->sourceLine;
322323
$out->sourceColumn = $this->env->block->sourceColumn;
323324
} else {
324325
$out->sourceName = null;
325326
$out->sourceLine = null;
326-
$out->sourceColum = null;
327+
$out->sourceColumn = null;
327328
}
329+
328330
return $out;
329331
}
330332

0 commit comments

Comments
 (0)