Identifica el error en el siguiente código HTML utilizado para enlazar un archivo CSS externo llamado "style.css":
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" src="style.css">
</head>
<body>
<p>Este párrafo debería estar estilizado con CSS externo.</p>
</body>
</html>