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

userguide: fix explanation about bsize ranges - v2 #10250

Closed
wants to merge 1 commit into from

Commits on Jan 25, 2024

  1. userguide: fix explanation about bsize ranges

    Our code handles Uint ranges as exclusive, but for bsize, our
    documentation stated that they're inclusive.
    
    Cf. from uint.rs:
    
        DetectUintMode::DetectUintModeRange => {
            if val > x.arg1 && val < x.arg2 {
                return true;
            }
        }
    
    Task OISF#6708
    jufajardini committed Jan 25, 2024
    Configuration menu
    Copy the full SHA
    7e7930f View commit details
    Browse the repository at this point in the history