Skip to content

Commit

Permalink
Merge pull request #1 from andershagbard/patch-1
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
simonridley authored Oct 12, 2020
2 parents e9f06ce + d36c45e commit 9667471
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/TrackingCodeTags.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ public function createLink(string $tag): string

$scripts = Arr::pluck($filtered, 'script');

$output = '<!-- tracking code manager '.$tag.' scritps -->';
$output = '<!-- tracking code manager '.$tag.' scripts -->';
foreach($scripts as $script){
$output .= $script;
}
$output .= '<!-- end tracking code manager '.$tag.' scritps -->';
$output .= '<!-- end tracking code manager '.$tag.' scripts -->';
return $output;

return '';
Expand All @@ -54,4 +54,4 @@ protected function isSupportedChannel(string $channel): bool
return false;
}

}
}

0 comments on commit 9667471

Please sign in to comment.