Skip to content

Commit

Permalink
docs: fix a typo and a syntax error in architecture.mdx (#2351)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahrtr committed Nov 7, 2021
1 parent 4950169 commit 880f01d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/docs/contributing/architecture.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ In the function `NewExecutor` we do the following:
2. init [cobra](https://github.com/spf13/cobra) commands
3. parse config file using [viper](https://github.com/spf13/viper) and merge it with command line args.

The following execution is controlled by `cobra`. If user a user executes `golangci-lint run`
The following execution is controlled by `cobra`. If a user executes `golangci-lint run`
then `cobra` executes `e.runCmd`.

Different `cobra` commands have different runners, e.g. a `run` command is configured in the following way:
Expand Down Expand Up @@ -104,7 +104,7 @@ The primary execution function of the `run` command is `executeRun`.
## Load Packages

Loading packages is listing all packages and their recursive dependencies for analysis.
Also, depending from enabled linters set some parsing of a source code can be performed
Also, depending on the enabled linters set some parsing of the source code can be performed
at this step.

Packages loading starts here:
Expand Down

0 comments on commit 880f01d

Please sign in to comment.