diff --git a/integration/microservices/src/kafka-concurrent/kafka-concurrent.controller.ts b/integration/microservices/src/kafka-concurrent/kafka-concurrent.controller.ts index fb3c9f4f222..a0ede418f36 100644 --- a/integration/microservices/src/kafka-concurrent/kafka-concurrent.controller.ts +++ b/integration/microservices/src/kafka-concurrent/kafka-concurrent.controller.ts @@ -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) => { diff --git a/integration/mosquitto.conf b/integration/mosquitto.conf index 4408237412c..ba2fbeb4376 100644 --- a/integration/mosquitto.conf +++ b/integration/mosquitto.conf @@ -573,7 +573,7 @@ allow_anonymous true # not given then the access is read/write. 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. # diff --git a/packages/core/test/interceptors/interceptors-consumer.spec.ts b/packages/core/test/interceptors/interceptors-consumer.spec.ts index 470310652d3..306d3f33b15 100644 --- a/packages/core/test/interceptors/interceptors-consumer.spec.ts +++ b/packages/core/test/interceptors/interceptors-consumer.spec.ts @@ -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>(); class StorageInterceptor implements NestInterceptor { intercept(