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

SPEC: Fix documentation example for ABC Size #3985

Merged
merged 1 commit into from Jan 30, 2017

Commits on Jan 29, 2017

  1. SPEC: Fix documentation example for ABC Size

    The given code example has an ABC size of 6.4, but comments list the
    calculation as:
    
    Math.sqrt(1*1 + 5*5 + 2*2)
    
    which results in: 5.48.
    
    The correct calculation for the given the example are:
    
    Math.sqrt(1*1 + 6*6 + 2*2) = 6.40
    a-leung committed Jan 29, 2017
    Configuration menu
    Copy the full SHA
    f52404e View commit details
    Browse the repository at this point in the history