Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix incorrect padding in fixed-width print #1584

Merged
merged 1 commit into from
Jul 26, 2022

Commits on Jul 21, 2022

  1. Fix incorrect padding in fixed-width print

    When using fixed-width padded strings, the explanation/example adds an extra padding character.
    println!("{number:>5}", number=1); formats the string to length 5, but the example text displays a string of width 6.
    Similarly:
    println!("{number:0>5}", number=1); pads with four zeroes, but the example shows five zeroes and then a "1" which is incorrect.
    This commit corrects both of these errors.
    DerekHolley authored Jul 21, 2022
    Configuration menu
    Copy the full SHA
    f2c0498 View commit details
    Browse the repository at this point in the history