Fix typo in performance docs (#1350)

Executon -> Execution
This commit is contained in:
Greg Curtis 2020-09-03 08:22:52 -04:00 committed by GitHub
parent ca8bbb845c
commit ee85322041
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,8 +7,8 @@ title: Performance
A trade-off between memory usage and execution time can be controlled by [`GOGC`](https://golang.org/pkg/runtime/#hdr-Environment_Variables) environment variable.
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:
| `GOGC` | Peak Memory, GB | Executon Time, s |
| --------------- | --------------- | ---------------- |
| `GOGC` | Peak Memory, GB | Execution Time, s |
| --------------- | --------------- | ----------------- |
| `5` | 1.1 | 60 |
| `10` | 1.1 | 34 |
| `20` | 1.3 | 25 |