Passing two interactions with WithInteractions causes error.

I’m trying to set the interaction of a binding at runtime, however I receive the following error:

InvalidOperationException: No interaction with name 'tap;slowTap' (mentioned in 'tap;slowTap') has been registered

The code is the same as the example code in the documentation on interaction, and is the following.

abilityInputAction.ChangeBinding(0).WithInteractions("tap;slowTap");

I can add both “tap” and “slowTap” induvidually, but as soon as I try to add them to the same binding, I get the same error.

Going thru latest examples has showed me there a lot of errors in the documentation.
change the ; to a ,