Skip to content

Commit fa4047f

Browse files
Apply suggestions from code review
Co-authored-by: Edward Chen <18449977+edgchen1@users.noreply.github.com>
1 parent d883059 commit fa4047f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/execution-providers/plugin-ep-libraries.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The ONNX Runtime repository includes a [sample plugin EP library](https://github
2828
### Defining an OrtEp
2929
An `OrtEp` represents an instance of an EP that is used by an ONNX Runtime session to identify and execute the model operations supported by the EP.
3030

31-
The following table lists the **required** varibles and functions that an implementer must define for an `OrtEp`.
31+
The following table lists the **required** variables and functions that an implementer must define for an `OrtEp`.
3232

3333
<table>
3434
<tr>
@@ -105,7 +105,7 @@ Implementation of this function is optional. If an EP prefers a non-default data
105105
<td>SetDynamicOptions</td>
106106
<td>
107107
Set dynamic options on this EP. Dynamic options can be set by the application at any time after session creation with <a href="https://onnxruntime.ai/docs/api/c/struct_ort_api.html#ab1117a51683e4fbb42687c9db6e8d5fb"><code>OrtApi::SetEpDynamicOptions()</code></a>.<br/><br/>
108-
Implementation of this function is optional. An EP should only impliment this function if it needs to handle any dynamic options.
108+
Implementation of this function is optional. An EP should only implement this function if it needs to handle any dynamic options.
109109
</td>
110110
<td></td>
111111
</tr>
@@ -114,7 +114,7 @@ Implementation of this function is optional. An EP should only impliment this fu
114114
<td>OnRunStart</td>
115115
<td>
116116
Called by ORT to notify the EP of the start of a run.<br/><br/>
117-
Implementation of this function is optional. An EP should only impliment this function if it needs to handle application-provided options at the start of a run.
117+
Implementation of this function is optional. An EP should only implement this function if it needs to handle application-provided options at the start of a run.
118118
</td>
119119
<td></td>
120120
</tr>
@@ -123,7 +123,7 @@ Implementation of this function is optional. An EP should only impliment this fu
123123
<td>OnRunEnd</td>
124124
<td>
125125
Called by ORT to notify the EP of the end of a run.<br/><br/>
126-
Implementation of this function is optional. An EP should only impliment this function if it needs to handle application-provided options at the end of a run.
126+
Implementation of this function is optional. An EP should only implement this function if it needs to handle application-provided options at the end of a run.
127127
</td>
128128
<td></td>
129129
</tr>

0 commit comments

Comments
 (0)