A very little error in documentation of pylab.subplots_adjust

I guess there is a very little error in documentation of

    > pylab.subplots_adjust.

    > The order of the arguments in the current doc is:
    > subplots_adjust(left=None, right=None, bottom=None,
    > top=None, wspace=0.2, hspace=0.2)

    > The correct order of the arguments seems to be:
    > subplots_adjust(left=None, bottom=None, right=None,
    > top=None, wspace=0.2, hspace=0.2)

    > Is it correct?

Yep that's right, thanks. I always use the kwarg version and hadn't
noticed the docstring bug.

JDH