From 389850d081d2972e73b5ef95f6f64794908071f5 Mon Sep 17 00:00:00 2001 From: Jon Surrell Date: Fri, 14 Oct 2022 13:37:33 +0200 Subject: [PATCH] Fix typo: possesive it's should be its --- src/rules/valid-expect-in-promise.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rules/valid-expect-in-promise.ts b/src/rules/valid-expect-in-promise.ts index 38a38d1e7..851ba830c 100644 --- a/src/rules/valid-expect-in-promise.ts +++ b/src/rules/valid-expect-in-promise.ts @@ -347,7 +347,7 @@ export default createRule({ }, messages: { expectInFloatingPromise: - "This promise should either be returned or awaited to ensure the expects in it's chain are called", + 'This promise should either be returned or awaited to ensure the expects in its chain are called', }, type: 'suggestion', schema: [],