Skip to content

Commit

Permalink
actually fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Achille Roussel <[email protected]>
  • Loading branch information
achille-roussel committed Sep 19, 2023
1 parent a7ec0bf commit 030f015
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/serde/serde.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func (d *Deserializer) readPtr() (unsafe.Pointer, sID) {

func (d *Deserializer) store(i sID, p unsafe.Pointer) {
if d.ptrs[i] != nil {
panic(fmt.Errorf("trying to overwwrite known ID %d with %p", i, p))
panic(fmt.Errorf("trying to overwrite known ID %d with %p", i, p))
}
d.ptrs[i] = p
}
Expand Down

0 comments on commit 030f015

Please sign in to comment.