From 20e164786e8e61e630d8d5f7024cbd484d77d1ff Mon Sep 17 00:00:00 2001 From: Edward Chen <18449977+edgchen1@users.noreply.github.com> Date: Wed, 18 Jan 2023 16:54:59 -0800 Subject: [PATCH] [objc] Fix parameter name in documentation. (#14330) Fix mismatch between documented and actual parameter name. --- objectivec/include/ort_session.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objectivec/include/ort_session.h b/objectivec/include/ort_session.h index 7c17d80ef0..92269f45c4 100644 --- a/objectivec/include/ort_session.h +++ b/objectivec/include/ort_session.h @@ -202,7 +202,7 @@ NS_ASSUME_NONNULL_BEGIN * See https://github.com/microsoft/onnxruntime/blob/342a5bf2b756d1a1fc6fdc582cfeac15182632fe/onnxruntime/test/testdata/custom_op_library/custom_op_library.cc#L115 * for an example of a custom op library registration function. * - * @param registration_func_name The name of the registration function to call. + * @param registrationFuncName The name of the registration function to call. * @param error Optional error information set if an error occurs. * @return Whether the registration function was successfully called. */