As others have said, it's a direct child, but it's worth noting that this is different to just leaving a space... a space is for any descendant.
Some text
div>span
would match this, but it would not match this:
To match that, you could do div>p>span
or div span
.