diff --git a/examples/micro_speech/main/audio_provider.cc b/examples/micro_speech/main/audio_provider.cc index 357d7cac..1dabec1a 100644 --- a/examples/micro_speech/main/audio_provider.cc +++ b/examples/micro_speech/main/audio_provider.cc @@ -45,7 +45,7 @@ static const char* TAG = "TF_LITE_AUDIO_PROVIDER"; ringbuf_t* g_audio_capture_buffer; volatile int32_t g_latest_audio_timestamp = 0; /* model requires 20ms new data from g_audio_capture_buffer and 10ms old data - * each time , storing old data in the histrory buffer , { + * each time , storing old data in the history buffer , { * history_samples_to_keep = 10 * 16 } */ constexpr int32_t history_samples_to_keep = ((kFeatureDurationMs - kFeatureStrideMs) *