Skip to content

Commit 4dbbeeb

Browse files
Clarify a code comment
1 parent 036d1b7 commit 4dbbeeb

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/plugin.cpp

+5-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@ class trim_operator final : public crtp_operator<trim_operator> {
2020
: field_{std::move(field)} {
2121
}
2222

23-
// This function contains the logic of the trim operator when
24-
// instantiated. It maps from a generator :53
25-
// of table slices to a generator of
26-
// table slices. A table slice is simply a batch of events.
23+
// This function contains the logic of the trim operator when instantiated.
24+
// It maps from a generator of table slices to a generator of table slices. A
25+
// table slice is simply a batch of events. The operator control plane is an
26+
// escape hatch from the operator, utilized for emitting diagnostics or
27+
// running asynchronous code outside of the operator's generator.
2728
auto operator()(generator<table_slice> input,
2829
operator_control_plane& ctrl) const
2930
-> generator<table_slice> {

0 commit comments

Comments
 (0)