io/event: [API] rename InputOp to Op

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2023-11-28 15:01:02 -06:00
parent eae39d8556
commit dbc10056f9
12 changed files with 51 additions and 51 deletions
+2 -2
View File
@@ -22,9 +22,9 @@ type Filter interface {
ImplementsFilter()
}
// InputOp declares a tag for input routing at the current transformation
// Op declares a tag for input routing at the current transformation
// and clip area hierarchy. It panics if tag is nil.
func InputOp(o *op.Ops, tag Tag) {
func Op(o *op.Ops, tag Tag) {
if tag == nil {
panic("Tag must be non-nil")
}