Error in Entity Filter Card documentation?

The documentation page for the Entity Filter Card states that:
“You can specify multiple conditions, in which case the entity will be displayed if it matches any condition.” [emphasis added]
https://www.home-assistant.io/dashboards/entity-filter/

But in my experience, the entities are displayed only if all conditions are satisfied. For example, the following card displays only entities that are both above 5 AND below 10.

type: entity-filter
entities:
  - input_number.num_junk
  - input_number.num_junk1
conditions:
  - condition: numeric_state
    below: 10
  - condition: numeric_state
    above: 5
card:
  type: entities

Is there an error in the documentation or am I misinterpreting it?

Thanks,
Steve