Skip to content

Commit fb8b63a

Browse files
committed
Fix weird linting
1 parent 9a2224d commit fb8b63a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

havoc/chaos.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ func (c *Chaos) Resume(ctx context.Context) error {
164164
return nil
165165
}
166166

167-
// Delete stops the chaos operation, updates its status, and removes the chaos object if specified.
167+
// Delete stops the chaos operation, updates its status, and removes the chaos object if specified.
168168
// It notifies listeners of the operation's completion and handles any errors encountered during the process.
169169
func (c *Chaos) Delete(ctx context.Context) error {
170170
defer func() {

seth/client_builder.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ func (c *ClientBuilder) WithArtifactsFolder(folder string) *ClientBuilder {
338338
return c
339339
}
340340

341-
// WithGethWrappersFolders sets list of folders where the Geth wrappers are stored. Seth will load ABIs from all wrappers it finds in theses folders (including subfolders).
341+
// WithGethWrappersFolders sets list of folders where the Geth wrappers are stored. Seth will load ABIs from all wrappers it finds in these folders (including subfolders).
342342
// Default value is an empty string (= loading disabled).
343343
func (c *ClientBuilder) WithGethWrappersFolders(folders []string) *ClientBuilder {
344344
c.config.GethWrappersDirs = folders
@@ -367,7 +367,7 @@ func (c *ClientBuilder) WithEthClient(ethclient simulated.Client) *ClientBuilder
367367
}
368368

369369
// WithHooks sets the hooks for the ClientBuilder configuration.
370-
// It allows users to customize behavior during client operations
370+
// It allows users to customize behavior during client operations
371371
// by providing a set of hooks to be executed at specific events.
372372
func (c *ClientBuilder) WithHooks(hooks Hooks) *ClientBuilder {
373373
c.config.Hooks = &hooks

0 commit comments

Comments
 (0)