.spinner and start option

.spinner and start option

Hello,

I was looking over some JQ UI docs and came across this as an example:

  1.    
    <script>
    $(function() {
    $( "#currency" ).change(function() {
    $( "#spinner" ).spinner( "option", "culture", $( this ).val() );
    });
    $( "#spinner" ).spinner({
    min: 5,
    max: 2500,
    step: 25,
    start: 1000,
    numberFormat: "C"
    });
    });
    </script>

But if you look over the API, start is an event not an option. Is this a typo, or something left over from a previous version?

Thanks,

Jim