Why is this an issue?

Checker to find use of single quote where double quote is preferred.

Noncompliant code example

<div id='header'></div>

Compliant solution

<div id="header"></div>