diff options
| author | a73x <[email protected]> | 2024-08-31 19:29:09 +0100 |
|---|---|---|
| committer | a73x <[email protected]> | 2024-08-31 19:29:09 +0100 |
| commit | 4303b1c281ea814ca493534d12451c485a9a763d (patch) | |
| tree | d547ee07e76ec34c6b23b7cb92ef7e6724ff1721 | |
| parent | ccc7693afed1f60a333e47cc9edc2def91164d62 (diff) | |
fix(html): typos on index
| -rw-r--r-- | content/index.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/index.md b/content/index.md index e42c4d5..3c6686b 100644 --- a/content/index.md +++ b/content/index.md @@ -10,7 +10,7 @@ title: me ### #go * layout packages by what they do, not by their abstract type -* use channels sparingly. write synchronous methods and allow the caller to make it async +* use channels sparingly: write synchronous methods and allow the caller to make it async * `append` modifies the underlying slice, you'll only make this mistake once * define interfaces where you use them * `make([]int, 5)` has a length and capacity of 5. `([]int, 0,5)` has a length of 0 and capacity of 5. @@ -18,7 +18,7 @@ title: me * don't use `init()` * TFBO (test, fix, benchmark, optimise) * more CPU != more performance - more CPU == more Contention + more CPU == more contention ### #git |
