Error in documentation

There’s an error in the scripting API that I just noticed, I don’t know where is the better place to report it.

In the description page for Rigidbody.AddExplosionForce it reads:

If radius is 0, the full force will be applied no matter how far away position is from the rigidbody. explosionRadius applies the force as if it was applied from beneath the object. This is useful since explosions that throw things up instead of pushing things to the side look cooler. A value of 2 will apply a force as if it is applied from 2 meters below while not changing the actual explosion position. explosionRadius is the position from which the explosion force is to be applied.explosionRadius is the radius of the explosion. Rigidbodies further away than explosionRadius will not be affected.

while it should be:

If radius is 0, the full force will be applied no matter how far away position is from the rigidbody. upwardsModifier applies the force as if it was applied from beneath the object. This is useful since explosions that throw things up instead of pushing things to the side look cooler. A value of 2 will apply a force as if it is applied from 2 meters below while not changing the actual explosion position. explosionPosition is the position from which the explosion force is to be applied.explosionRadius is the radius of the explosion. Rigidbodies further away than explosionRadius will not be affected.

Thanks, we’ll sort that.

This page in the documentation has been updated, and you should see the change in the next docs release.