Skip to content

Commit

Permalink
typos (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
tzaffi committed Jun 29, 2023
1 parent 37a13fe commit 9eb8e62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion conduit/pipeline/pipeline.go
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ func (p *pipelineImpl) Init() error {
}
err = (*p.exporter).Init(p.ctx, *p.initProvider, config, logger)
if err != nil {
return fmt.Errorf("Pipeline.Start(): could not initialize Exporter (%s): %w", p.cfg.Exporter.Name, err)
return fmt.Errorf("Pipeline.Init(): could not initialize Exporter (%s): %w", p.cfg.Exporter.Name, err)
}
p.logger.Infof("Initialized Exporter: %s", p.cfg.Exporter.Name)
}
Expand Down
2 changes: 1 addition & 1 deletion docs/Development.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Generally speaking, you can follow the code in one of the existing plugins.

### Init

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

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

Expand Down

0 comments on commit 9eb8e62

Please sign in to comment.