From ba72bb6f98192341e56a6fe0b509d90f2b7e9f57 Mon Sep 17 00:00:00 2001 From: kyoshisuki <143475866+kyoshisuki@users.noreply.github.com> Date: Mon, 9 Oct 2023 07:51:34 -0700 Subject: [PATCH] Fix a typo in ABI_Dev_Notes.md (#17832) --- docs/ABI_Dev_Notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ABI_Dev_Notes.md b/docs/ABI_Dev_Notes.md index f9b55176cf95b..f85dd9d19a336 100644 --- a/docs/ABI_Dev_Notes.md +++ b/docs/ABI_Dev_Notes.md @@ -4,7 +4,7 @@ Global variables may get constructed or destructed inside "DllMain". There are s ## Thread Local variables Onnxruntime must support explicit linking, where the operating system loads the DLL on demand at runtime, instead of process startup time. This is required by our language bindings like C#/Java. -However, there are some special restrictions on this, If a thread local variable need non-trivial construction, for the threads already exist before onnxruntime.dll is loaded, the variable won't get initialized correctly. So it's better to only access such variables from onnxruntime internal threads, or make these variables function local (Like the magic statics). +However, there are some special restrictions on this. If a thread local variable need non-trivial construction, for the threads already exist before onnxruntime.dll is loaded, the variable won't get initialized correctly. So it's better to only access such variables from onnxruntime internal threads, or make these variables function local (Like the magic statics). ## No undefined symbols