diff --git a/src/inference/include/openvino/runtime/infer_request.hpp b/src/inference/include/openvino/runtime/infer_request.hpp index ed4dcd67797b84..10a606a2b6c535 100644 --- a/src/inference/include/openvino/runtime/infer_request.hpp +++ b/src/inference/include/openvino/runtime/infer_request.hpp @@ -255,7 +255,7 @@ class OPENVINO_RUNTIME_API InferRequest { /** * @brief Infers specified input(s) in synchronous mode. * @note It blocks all methods of InferRequest while request is ongoing (running or waiting in a queue). - * Calling any method leads to throwning the ov::Busy exception. + * Calling any method leads to throwing the ov::Busy exception. */ void infer(); @@ -274,7 +274,7 @@ class OPENVINO_RUNTIME_API InferRequest { /** * @brief Starts inference of specified input(s) in asynchronous mode. * @note It returns immediately. Inference starts also immediately. - * Calling any method while the request in a running state leads to throwning the ov::Busy exception. + * Calling any method while the request in a running state leads to throwing the ov::Busy exception. */ void start_async();