mirror of https://github.com/gofiber/fiber.git
✏️ Fix: comment typo (#2173)
Just a typo I think there's a typo "unmashal" for "unmarshal"pull/2171/head
parent
4d584c9c9b
commit
eb692727c5
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue