Fix some ambigous typos

This commit is contained in:
Yaroslav Halchenko 2023-03-29 14:07:08 -04:00
parent 98c08375d6
commit 619fb193eb
4 changed files with 4 additions and 4 deletions

View file

@ -1235,7 +1235,7 @@ FORMULA_TRANSPARENT = YES
USE_MATHJAX = NO USE_MATHJAX = NO
# When MathJax is enabled you can set the default output format to be used for # When MathJax is enabled you can set the default output format to be used for
# thA MathJax output. Supported types are HTML-CSS, NativeMML (i.e. MathML) and # the MathJax output. Supported types are HTML-CSS, NativeMML (i.e. MathML) and
# SVG. The default value is HTML-CSS, which is slower, but has the best # SVG. The default value is HTML-CSS, which is slower, but has the best
# compatibility. # compatibility.

View file

@ -348,7 +348,7 @@ static pa_available_t calc_port_state(pa_device_port *p, struct userdata *u) {
break; break;
} }
/* If the current availablility is unknown go the more precise no, /* If the current availability is unknown go the more precise no,
* but otherwise don't change state */ * but otherwise don't change state */
if (pa == PA_AVAILABLE_UNKNOWN) if (pa == PA_AVAILABLE_UNKNOWN)
pa = cpa; pa = cpa;

View file

@ -1884,7 +1884,7 @@ static void setup_complete_callback(pa_pdispatch *pd, uint32_t command, uint32_t
#ifdef TUNNEL_SINK #ifdef TUNNEL_SINK
pa_tagstruct_put_boolean(reply, false); /* volume_set */ pa_tagstruct_put_boolean(reply, false); /* volume_set */
#endif #endif
pa_tagstruct_put_boolean(reply, true); /* early rquests */ pa_tagstruct_put_boolean(reply, true); /* early requests */
} }
if (u->version >= 15) { if (u->version >= 15) {

View file

@ -15,7 +15,7 @@ extern "C" {
* are stored in x1 and x2, and the previous two outputs are stored in y1 and * are stored in x1 and x2, and the previous two outputs are stored in y1 and
* y2. * y2.
* *
* We use double during the coefficients calculation for better accurary, but * We use double during the coefficients calculation for better accuracy, but
* float is used during the actual filtering for faster computation. * float is used during the actual filtering for faster computation.
*/ */
struct biquad { struct biquad {