From 3d6da958d33dd2415b3c8df64b702182331d55d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20Garc=C3=ADa?= Date: Mon, 1 May 2017 12:33:09 +0200 Subject: [PATCH] Fix typo in comment This is a minor fix (moudule -> module) Merges https://github.com/espressif/esp-idf/pull/555 --- examples/bluetooth/gatt_client/main/gattc_demo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/bluetooth/gatt_client/main/gattc_demo.c b/examples/bluetooth/gatt_client/main/gattc_demo.c index 17ca74102..7c16b29f1 100644 --- a/examples/bluetooth/gatt_client/main/gattc_demo.c +++ b/examples/bluetooth/gatt_client/main/gattc_demo.c @@ -404,7 +404,7 @@ void ble_client_appRegister(void) ESP_LOGI(GATTC_TAG, "register callback"); - //register the scan callback function to the gap moudule + //register the scan callback function to the gap module if ((status = esp_ble_gap_register_callback(esp_gap_cb)) != ESP_OK) { ESP_LOGE(GATTC_TAG, "gap register error, error code = %x", status); return;