Bug in Basic CSS: Import a Google Font

In the lesson it instructs you to copy this “snippet” of code

 <link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">

when really this wont do any thing and it should be

<link href="https://fonts.googleapis.com/css?" family="Lobster" rel="stylesheet" type="text/css">

Is that intentional or an actual bug because I can see how it could be missed I suppose.

The provided snippet (<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">) will import the font and pass the tests.

The snippet that you included (<link href="https://fonts.googleapis.com/css?" family="Lobster" rel="stylesheet" type="text/css">) will pass the tests because they are not strict enough, but it will not import the lobster font.