fix: update descriptions to replace "e.g." with "for example," for clarity

This commit is contained in:
Mark McLaughlin
2026-02-24 14:01:32 -08:00
committed by Keith Guerin
parent 0ce5805712
commit c55a445639

View File

@@ -368,7 +368,7 @@ const SETTINGS_SCHEMA = {
requiresRestart: false,
default: undefined as string | undefined,
description:
'Automatically delete chats older than this time period (e.g., "30d", "7d", "24h", "1w")',
'Automatically delete chats older than this time period (for example, "30d", "7d", "24h", "1w")',
showInDialog: true,
},
maxCount: {
@@ -1231,7 +1231,7 @@ const SETTINGS_SCHEMA = {
requiresRestart: true,
default: [] as string[],
description:
'Additional ignore file paths to respect. These files take precedence over .geminiignore and .gitignore. Files earlier in the array take precedence over files later in the array, e.g. the first file takes precedence over the second one.',
'Additional ignore file paths to respect. These files take precedence over .geminiignore and .gitignore. Files earlier in the array take precedence over files later in the array, for example, the first file takes precedence over the second one.',
showInDialog: true,
items: { type: 'string' },
mergeStrategy: MergeStrategy.UNION,