Skip to content

Commit 6549754

Browse files
Use spaces instead of non-breaking spaces, narrow non-breaking spaces. (#42500)
1 parent c3e132d commit 6549754

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/lib/es5.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4331,8 +4331,8 @@ declare namespace Intl {
43314331

43324332
interface DateTimeFormatOptions {
43334333
localeMatcher?: "best fit" | "lookup";
4334-
weekday?:"long" | "short" | "narrow";
4335-
era?:"long" | "short" | "narrow";
4334+
weekday?: "long" | "short" | "narrow";
4335+
era?: "long" | "short" | "narrow";
43364336
year?: "numeric" | "2-digit";
43374337
month?: "numeric" | "2-digit" | "long" | "short" | "narrow";
43384338
day?: "numeric" | "2-digit";

src/services/codefixes/helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ namespace ts.codefix {
321321
return typeNode;
322322
}
323323

324-
function createDummyParameters(argCount: number, names: (string | undefined)[] | undefined, types: (TypeNode | undefined)[] | undefined, minArgumentCount: number | undefined, inJs: boolean): ParameterDeclaration[] {
324+
function createDummyParameters(argCount: number, names: (string | undefined)[] | undefined, types: (TypeNode | undefined)[] | undefined, minArgumentCount: number | undefined, inJs: boolean): ParameterDeclaration[] {
325325
const parameters: ParameterDeclaration[] = [];
326326
for (let i = 0; i < argCount; i++) {
327327
const newParameter = factory.createParameterDeclaration(

0 commit comments

Comments
 (0)