netpfil: Fix a typo in a source code comment

- s/intergers/integers/

While here, fix some whitespace issues.

MFC after:	3 days
This commit is contained in:
Gordon Bergling 2022-09-03 19:18:54 +02:00
parent 3576233cd3
commit fd2235ffdc

View file

@ -156,7 +156,7 @@ control_law(struct codel_status *cst, struct dn_aqm_codel_parms *cprms,
}
/* newguess = g(1.5 - 0.5*c*g^2)
* Multiplying both sides by 2 to make all the constants intergers
* Multiplying both sides by 2 to make all the constants integers
* newguess * 2 = g(3 - c*g^2) g=old guess, c=count
* So, newguess = newguess /2
* Fixed point operations are used here.