Skip to content

Commit 42c7450

Browse files
committed
fix(cli): correct article for credential primitive ('a' not 'an')
The article was 'an' for the old 'identity' label but 'credential' takes 'a'. This fixes help text like "Remove an credential" → "Remove a credential". Confidence: high Scope-risk: narrow
1 parent f3bda78 commit 42c7450

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cli/primitives/CredentialPrimitive.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export class CredentialPrimitive extends BasePrimitive<AddCredentialOptions, Rem
6767
readonly label = 'Credential';
6868
readonly primitiveSchema = CredentialSchema;
6969

70-
protected override readonly article: string = 'an';
70+
protected override readonly article: string = 'a';
7171

7272
async add(options: AddCredentialOptions): Promise<AddResult<{ credentialName: string }>> {
7373
try {

0 commit comments

Comments
 (0)