1f5c8ce353
- `make([]a, b)` create a slice of `b` elements `a` - `make([]a, b, c)` create a slice of `0` elements `a`, but reserve space for `c` of them When using `append` on the former, it will result on a slice with `b` leading elements, which is unlikely to be what we want. This commit replaces the two instances where this happens with the latter construct. |
||
---|---|---|
.. | ||
api_key.go | ||
batch.go | ||
category.go | ||
certificate_cache.go | ||
enclosure.go | ||
entry.go | ||
entry_pagination_builder.go | ||
entry_query_builder.go | ||
feed.go | ||
feed_query_builder.go | ||
icon.go | ||
integration.go | ||
session.go | ||
storage.go | ||
timezone.go | ||
user.go | ||
user_session.go | ||
webauthn.go |