Skip to content

Commit bae6333

Browse files
gramalingambddppq
authored andcommitted
minor fix to scan documentation (onnx#1355)
1 parent bfb9e7a commit bae6333

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/Changelog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8180,7 +8180,7 @@ This version of the operator has been available since version 8 of the default O
81808180

81818181
### <a name="Scan-8"></a>**Scan-8**</a>
81828182

8183-
Scan can be used to iterate over (specified axes of) one or more scan_input tensors,
8183+
Scan can be used to iterate over one or more scan_input tensors,
81848184
constructing zero or more scan_output tensors. It combines ideas from general recurrences,
81858185
functional programming constructs such as scan, fold, map, and zip and is intended to enable
81868186
generalizations of RNN-like constructs for sequence-to-sequence processing.

docs/Operators.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8755,7 +8755,7 @@ for test_name, shape in test_cases.items():
87558755

87568756
### <a name="Scan"></a><a name="scan">**Scan**</a>
87578757

8758-
Scan can be used to iterate over (specified axes of) one or more scan_input tensors,
8758+
Scan can be used to iterate over one or more scan_input tensors,
87598759
constructing zero or more scan_output tensors. It combines ideas from general recurrences,
87608760
functional programming constructs such as scan, fold, map, and zip and is intended to enable
87618761
generalizations of RNN-like constructs for sequence-to-sequence processing.

onnx/defs/controlflow/defs.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ ONNX_OPERATOR_SET_SCHEMA(
194194
.TypeConstraint("B", {"bool"}, "Only bool"));
195195

196196
static const char* scan_ver1_doc = R"DOC(
197-
Scan can be used to iterate over (specified axes of) one or more scan_input tensors,
197+
Scan can be used to iterate over one or more scan_input tensors,
198198
constructing zero or more scan_output tensors. It combines ideas from general recurrences,
199199
functional programming constructs such as scan, fold, map, and zip and is intended to enable
200200
generalizations of RNN-like constructs for sequence-to-sequence processing.

0 commit comments

Comments
 (0)