Skip to content

Commit 9eb8e62

Browse files
authored
typos (#112)
1 parent 37a13fe commit 9eb8e62

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

conduit/pipeline/pipeline.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ func (p *pipelineImpl) Init() error {
354354
}
355355
err = (*p.exporter).Init(p.ctx, *p.initProvider, config, logger)
356356
if err != nil {
357-
return fmt.Errorf("Pipeline.Start(): could not initialize Exporter (%s): %w", p.cfg.Exporter.Name, err)
357+
return fmt.Errorf("Pipeline.Init(): could not initialize Exporter (%s): %w", p.cfg.Exporter.Name, err)
358358
}
359359
p.logger.Infof("Initialized Exporter: %s", p.cfg.Exporter.Name)
360360
}

docs/Development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Generally speaking, you can follow the code in one of the existing plugins.
5656

5757
### Init
5858

59-
Each plugin will have its `Init` function called once as the pipline is constructed.
59+
Each plugin will have its `Init` function called once as the pipeline is constructed.
6060

6161
The context provided to this function should be saved, and used to terminate any long-running operations if necessary.
6262

0 commit comments

Comments
 (0)