Skip to content

Commit 66b731d

Browse files
committed
chore: fix some typos in comments
Signed-off-by: welfuture <wellfuture@qq.com>
1 parent 6538ede commit 66b731d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

integration/microservices/src/kafka-concurrent/kafka-concurrent.controller.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { Observable } from 'rxjs';
1313
import { SumDto } from './dto/sum.dto';
1414

1515
/**
16-
* The following function explicity sends messages to the key representing the partition.
16+
* The following function explicitly sends messages to the key representing the partition.
1717
*/
1818
const explicitPartitioner = () => {
1919
return ({ message }: PartitionerArgs) => {

integration/mosquitto.conf

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

packages/core/test/interceptors/interceptors-consumer.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ describe('InterceptorsConsumer', () => {
8686
});
8787

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

0 commit comments

Comments
 (0)