The following code creates an error ``` scss a:hover, a:focus { @include background-image(linear-gradient( top, transparent, currentcolor )); } ``` While this compiles just fine ``` scss a:hover, a:focus { @include background-image(linear-gradient( top, transparent, red )); } ```