chore: fix typos in comments (#8553)

This commit is contained in:
yy 2026-01-23 17:02:04 +09:00 committed by GitHub
parent 2a29ab8d4a
commit bb4f172e26
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -218,7 +218,7 @@ export const removeNillKeys = <T,>(obj: T) =>
Object.fromEntries(Object.entries(obj ?? {}).filter(([key, value]) => key && !isNil(value))); Object.fromEntries(Object.entries(obj ?? {}).filter(([key, value]) => key && !isNil(value)));
/** /**
* This Method returns if the the grouped values are subGrouped * This Method returns if the grouped values are subGrouped
* @param groupedIssueIds * @param groupedIssueIds
* @returns * @returns
*/ */

View file

@ -589,7 +589,7 @@ export const removeNillKeys = <T,>(obj: T) =>
Object.fromEntries(Object.entries(obj ?? {}).filter(([key, value]) => key && !isNil(value))); Object.fromEntries(Object.entries(obj ?? {}).filter(([key, value]) => key && !isNil(value)));
/** /**
* This Method returns if the the grouped values are subGrouped * This Method returns if the grouped values are subGrouped
* @param groupedIssueIds * @param groupedIssueIds
* @returns * @returns
*/ */

View file

@ -1469,7 +1469,7 @@ export abstract class BaseIssuesStore implements IBaseIssuesStore {
// if the key for accumulator is not the current action, // if the key for accumulator is not the current action,
// Meaning if the key already has an action ADD and the current one is REMOVE, // Meaning if the key already has an action ADD and the current one is REMOVE,
// The the key is deleted as both the actions cancel each other out // The key is deleted as both the actions cancel each other out
if (accumulator[key] !== action) { if (accumulator[key] !== action) {
delete accumulator[key]; delete accumulator[key];
} }