✏️ Fix: comment typo (#2173)

Just a typo

I think there's a typo "unmashal" for "unmarshal"
pull/2171/head
Diego Parisi 2022-10-25 18:05:57 +02:00 committed by GitHub
parent 4d584c9c9b
commit eb692727c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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()