From d2008cd7c7266e51696d5dce79f369bc308ff96c Mon Sep 17 00:00:00 2001 From: Suraj Sonawane Date: Thu, 13 Mar 2025 16:58:52 +0530 Subject: [PATCH] build_testbench: Fix mhwaveedit command The command `mhWaveEdit audio_out.wav` was incorrect because the package installs the binary as `mhwaveedit` (all lowercase). This commit corrects the capitalization to avoid command not found errors. Signed-off-by: Suraj Sonawane --- developer_guides/testbench/build_testbench.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer_guides/testbench/build_testbench.rst b/developer_guides/testbench/build_testbench.rst index 3f707b10..c6173507 100644 --- a/developer_guides/testbench/build_testbench.rst +++ b/developer_guides/testbench/build_testbench.rst @@ -115,7 +115,7 @@ it can be launched to an audio editor tool such as mhWaveEdit: .. code-block:: bash paplay audio_out.wav - mhWaveEdit audio_out.wav + mhwaveedit audio_out.wav .. figure:: fig_mhwaveedit.png