Skip to content

Commit

Permalink
Merge pull request #13469 from welfuture/master
Browse files Browse the repository at this point in the history
chore: fix some typos in comments
  • Loading branch information
kamilmysliwiec committed Apr 21, 2024
2 parents 6538ede + 66b731d commit 685b5fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -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) => {
Expand Down
2 changes: 1 addition & 1 deletion integration/mosquitto.conf
Expand Up @@ -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.
#
Expand Down
Expand Up @@ -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(
Expand Down

0 comments on commit 685b5fd

Please sign in to comment.