Skip to content

Commit

Permalink
✏️ Fix: comment typo (#2173)
Browse files Browse the repository at this point in the history
Just a typo

I think there's a typo "unmashal" for "unmarshal"
  • Loading branch information
gandaldf committed Oct 25, 2022
1 parent 4d584c9 commit eb69272
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion middleware/session/store.go
Expand Up @@ -66,7 +66,7 @@ func (s *Store) Get(c *fiber.Ctx) (*Session, error) {
// Fetch existing data
if loadData {
raw, err := s.Storage.Get(id)
// Unmashal if we found data
// Unmarshal if we found data
if raw != nil && err == nil {
mux.Lock()
defer mux.Unlock()
Expand Down

0 comments on commit eb69272

Please sign in to comment.