chore: fix some typos in comments

Signed-off-by: welfuture <wellfuture@qq.com>
This commit is contained in:
welfuture
2024-04-20 20:48:16 +08:00
parent 6538ede9ef
commit 66b731d4db
3 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ import { Observable } from 'rxjs';
import { SumDto } from './dto/sum.dto';
/**
* The following function explicity sends messages to the key representing the partition.
* The following function explicitly sends messages to the key representing the partition.
*/
const explicitPartitioner = () => {
return ({ message }: PartitionerArgs) => {

View File

@@ -573,7 +573,7 @@ allow_anonymous true
# not given then the access is read/write. <topic> can contain the + or #
# wildcards as in subscriptions.
#
# The "deny" option can used to explicity deny access to a topic that would
# The "deny" option can used to explicitly deny access to a topic that would
# otherwise be granted by a broader read/write/readwrite statement. Any "deny"
# topics are handled before topics that grant read/write access.
#

View File

@@ -86,7 +86,7 @@ describe('InterceptorsConsumer', () => {
});
describe('when AsyncLocalStorage is used', () => {
it('should allow an interceptor to set values in AsyncLocalStorage that are accesible from the controller', async () => {
it('should allow an interceptor to set values in AsyncLocalStorage that are accessible from the controller', async () => {
const storage = new AsyncLocalStorage<Record<string, any>>();
class StorageInterceptor implements NestInterceptor {
intercept(