a href=" " gives a strange error message

When validating an HTML5 document with the following tag:

<a href=" ">...</a>

(single space in href), the received error message looks strange:

"Bad value for attribute href on element a: DOUBLE_WHITESPACE in PATH."

Well, there is no double whitespace. Perhaps, this error message
should be revisited.
Thank you.
Here's a source code that allows you to reproduce the error message:

<!DOCTYPE HTML>
<html>
<head><title>Title</title></head>
<body>
<a href=" ">single space in href</a>
</body>
</html>

Received on Thursday, 27 May 2010 14:24:37 UTC