draggable option names inconsistent: scrollSensitiviy, snapTolerance

draggable option names inconsistent: scrollSensitiviy, snapTolerance

In reviewing the draggable documentation, I noticed an inconsistency in the naming of these two parameters:
scrollSensitivity
<a href="http://docs.jquery.com/UI/API/1.7/Draggable#option-scrollSensitivity">http://docs.jquery.com/UI/API/1.7/Draggable#option-scrollSensitivity</a>
"Distance in pixels from the edge of the view port after which the view port should scroll. Distance is relative to pointer, not the draggable."
This is one of three related options: scroll, scrollSensitivity, scrollSpeed
snapTolerance
<a href="http://docs.jquery.com/UI/API/1.7/Draggable#option-snapTolerance">http://docs.jquery.com/UI/API/1.7/Draggable#option-snapTolerance</a>
"The distance in pixels from the snap element edges at which snapping should occur. Ignored if snap is false."
This is one of two related options: snap, snapTolerance
They're both tolerance distance in px. I'm not seeing a reason to maintain this inconsistency. Thoughts? Should we rename scrollSensitivity to scrollTolerance?
- Richard