Skip to content

Commit

Permalink
merge: pull request #206 from Atlinx/feature/configurable-operations-…
Browse files Browse the repository at this point in the history
…context

fix: minor syntax mistakes in docs
  • Loading branch information
edobrb authored May 25, 2022
2 parents 122e7ef + b2ea055 commit 4ea9331
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/chapters/advanced/computed-fields.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const entityManager = new EntityManager({
},
compute: async (user) => {
return {
fullName: `${user.fisrtName} ${user.lastName}`,
fullName: `${user.firstName} ${user.lastName}`,
}
}
})
Expand Down
8 changes: 4 additions & 4 deletions docs/chapters/advanced/security.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ const entityManager = new EntityManager({
},
defaultPermissions: PERMISSION.DENY,
},
}
},
defaultPermissions: PERMISSION.DENY
}
)
Expand Down Expand Up @@ -260,7 +260,7 @@ const entityManager = new EntityManager({
},
defaultPermissions: PERMISSION.DENY,
},
}
},
defaultPermissions: PERMISSION.DENY
}
)
Expand Down Expand Up @@ -305,7 +305,7 @@ const entityManager = new EntityManager({
},
defaultPermissions: PERMISSION.DENY,
},
}
},
defaultPermissions: PERMISSION.DENY
}
)
Expand Down Expand Up @@ -345,7 +345,7 @@ const entityManager = new EntityManager({
},
defaultPermissions: PERMISSION.DENY,
},
}
},
defaultPermissions: PERMISSION.DENY
}
)
Expand Down

0 comments on commit 4ea9331

Please sign in to comment.