Skip to content

Commit

Permalink
#38 tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
miku committed Nov 23, 2023
1 parent 43f3917 commit 7cca062
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion content/posts/meetup-38-wrapup.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ type Offer struct {
}
```

One way to go about it would be to reduce any heap allocated value with stack allocated value, if possible, e.g.
If possible, one can try to use stack allocated values (note: Go
[ref/spec](https://go.dev/ref/spec) never mentions to stack or heap, as these
concepts are abstracted by the language):

```go
// Offer, reduced, abridged.
Expand Down

0 comments on commit 7cca062

Please sign in to comment.