From b99c5e566447d6177917f1b4ac7e0ab85e94075a Mon Sep 17 00:00:00 2001 From: Roman Kazantsev Date: Wed, 6 Dec 2023 13:16:26 +0400 Subject: [PATCH] Update src/frontends/tensorflow_common/src/op/atan2.cpp --- src/frontends/tensorflow_common/src/op/atan2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontends/tensorflow_common/src/op/atan2.cpp b/src/frontends/tensorflow_common/src/op/atan2.cpp index b8ec04fc6dae15..35a7dbf40ae979 100644 --- a/src/frontends/tensorflow_common/src/op/atan2.cpp +++ b/src/frontends/tensorflow_common/src/op/atan2.cpp @@ -43,7 +43,7 @@ OutputVector translate_atan2_op(const NodeContext& node) { auto atan_y_x_plus_pi = make_shared(atan, const_pi); result = make_shared(cond1, atan_y_x_plus_pi, result); - // handle the third consition : x<0 && y<0 + // handle the third condition : x<0 && y<0 auto is_y_negative = make_shared(y, const_zero); auto cond2 = make_shared(is_x_negative, is_y_negative); auto atan_y_x_minus_pi = make_shared(atan, const_pi);