Skip to content

Commit ee85322

Browse files
authored
Fix typo in performance docs (#1350)
Executon -> Execution
1 parent ca8bbb8 commit ee85322

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

docs/src/docs/usage/performance.mdx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ title: Performance
77
A trade-off between memory usage and execution time can be controlled by [`GOGC`](https://golang.org/pkg/runtime/#hdr-Environment_Variables) environment variable.
88
Less `GOGC` values trigger garbage collection more frequently and golangci-lint consumes less memory and more CPU. Below is the trade-off table for running on this repo:
99

10-
| `GOGC` | Peak Memory, GB | Executon Time, s |
11-
| --------------- | --------------- | ---------------- |
12-
| `5` | 1.1 | 60 |
13-
| `10` | 1.1 | 34 |
14-
| `20` | 1.3 | 25 |
15-
| `30` | 1.6 | 20.2 |
16-
| `50` | 2.0 | 17.1 |
17-
| `80` | 2.2 | 14.1 |
18-
| `100` (default) | 2.2 | 13.8 |
19-
| `off` | 3.2 | 9.3 |
10+
| `GOGC` | Peak Memory, GB | Execution Time, s |
11+
| --------------- | --------------- | ----------------- |
12+
| `5` | 1.1 | 60 |
13+
| `10` | 1.1 | 34 |
14+
| `20` | 1.3 | 25 |
15+
| `30` | 1.6 | 20.2 |
16+
| `50` | 2.0 | 17.1 |
17+
| `80` | 2.2 | 14.1 |
18+
| `100` (default) | 2.2 | 13.8 |
19+
| `off` | 3.2 | 9.3 |
2020

2121
## Why `golangci-lint` is so fast
2222

0 commit comments

Comments
 (0)