From 7586d5e7b1dd1603161689d7d8523ed8130e1c6f Mon Sep 17 00:00:00 2001 From: Kirill Mikhailov Date: Mon, 30 Sep 2024 12:41:25 +0200 Subject: [PATCH] init -> initialize screwed up after rebase --- esp-wifi/MIGRATING-0.9.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esp-wifi/MIGRATING-0.9.md b/esp-wifi/MIGRATING-0.9.md index 4548a6d214b..40142b4fa3b 100644 --- a/esp-wifi/MIGRATING-0.9.md +++ b/esp-wifi/MIGRATING-0.9.md @@ -2,7 +2,7 @@ ## Initialization -You no longer have to set up clocks and pass them to `esp_wifi::init`. +You no longer have to set up clocks and pass them to `esp_wifi::initialize`. ```diff use esp_hal::{ @@ -12,7 +12,7 @@ You no longer have to set up clocks and pass them to `esp_wifi::init`. - system::SystemControl, }; use esp_wifi::{ - init, + initialize, // ... };