From c0483ee0b801c698f6fa44a113ed06e2c355f93d Mon Sep 17 00:00:00 2001 From: Vaibhav Srivastava Date: Sat, 29 Aug 2026 17:26:15 +0530 Subject: [PATCH] docs: fix typo asynchornous -> asynchronous Signed-off-by: Vaibhav Srivastava --- modules/aaa_diameter/diameter_api.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/aaa_diameter/diameter_api.h b/modules/aaa_diameter/diameter_api.h index 1071b3d9c26..61743d407c3 100644 --- a/modules/aaa_diameter/diameter_api.h +++ b/modules/aaa_diameter/diameter_api.h @@ -61,12 +61,12 @@ typedef int (diameter_send_req_f)(diameter_conn*, int app_id, int code, cJSON *req, diameter_reply *reply); /* - Callback run for an asynchornous command reply + Callback run for an asynchronous command reply */ typedef int (diameter_reply_cb)(diameter_conn *conn, diameter_reply *reply, void *param); /* - Sends an asynchornous diameter request and calls the callback in the reply + Sends an asynchronous diameter request and calls the callback in the reply */ typedef int (diameter_send_req_async_f)(diameter_conn*, int app_id, int code, cJSON *req, diameter_reply_cb *reply_cb, void *reply_param);