From 619fb193eb9e95b497514bb0c0374e79d9b90825 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Wed, 29 Mar 2023 14:07:08 -0400 Subject: [PATCH] Fix some ambigous typos --- doxygen/doxygen.conf.in | 2 +- src/modules/alsa/module-alsa-card.c | 2 +- src/modules/module-tunnel.c | 2 +- src/pulsecore/filter/biquad.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doxygen/doxygen.conf.in b/doxygen/doxygen.conf.in index 21b6814f0..107961abf 100644 --- a/doxygen/doxygen.conf.in +++ b/doxygen/doxygen.conf.in @@ -1235,7 +1235,7 @@ FORMULA_TRANSPARENT = YES USE_MATHJAX = NO # 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 # compatibility. diff --git a/src/modules/alsa/module-alsa-card.c b/src/modules/alsa/module-alsa-card.c index 05c87c6bb..b92cbb873 100644 --- a/src/modules/alsa/module-alsa-card.c +++ b/src/modules/alsa/module-alsa-card.c @@ -348,7 +348,7 @@ static pa_available_t calc_port_state(pa_device_port *p, struct userdata *u) { 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 */ if (pa == PA_AVAILABLE_UNKNOWN) pa = cpa; diff --git a/src/modules/module-tunnel.c b/src/modules/module-tunnel.c index ab094ba4e..f4311eddd 100644 --- a/src/modules/module-tunnel.c +++ b/src/modules/module-tunnel.c @@ -1884,7 +1884,7 @@ static void setup_complete_callback(pa_pdispatch *pd, uint32_t command, uint32_t #ifdef TUNNEL_SINK pa_tagstruct_put_boolean(reply, false); /* volume_set */ #endif - pa_tagstruct_put_boolean(reply, true); /* early rquests */ + pa_tagstruct_put_boolean(reply, true); /* early requests */ } if (u->version >= 15) { diff --git a/src/pulsecore/filter/biquad.h b/src/pulsecore/filter/biquad.h index bb8f2fb91..8b7ecccaa 100644 --- a/src/pulsecore/filter/biquad.h +++ b/src/pulsecore/filter/biquad.h @@ -15,7 +15,7 @@ extern "C" { * are stored in x1 and x2, and the previous two outputs are stored in y1 and * 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. */ struct biquad {