Fixed wrong output information

to -> too
This commit is contained in:
David Lin 2020-03-04 23:04:52 +08:00 committed by GitHub
parent 90e8b3664d
commit f9ab9d5868
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ rt_err_t rt_wlan_dev_ap_start(struct rt_wlan_device *device, struct rt_wlan_info
if ((password_len > RT_WLAN_PASSWORD_MAX_LENGTH) ||
(info->ssid.len > RT_WLAN_SSID_MAX_LENGTH))
{
LOG_E("L:%d password or ssid is to long", __LINE__);
LOG_E("L:%d password or ssid is too long", __LINE__);
return -RT_ERROR;
}