Skip to content

Commit 128da51

Browse files
committed
'char -> 'Char
1 parent 1c73196 commit 128da51

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Compiler/SyntaxTree/UnicodeLexing.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ open Internal.Utilities.Text.Lexing
88

99
type Lexbuf = LexBuffer<char>
1010

11-
type LexBuffer<'char> with
11+
type LexBuffer<'Char> with
1212

1313
member lexbuf.GetLocalData<'T when 'T: not null>(key: string, initializer) =
1414
match lexbuf.BufferLocalStore.TryGetValue key with

src/Compiler/SyntaxTree/UnicodeLexing.fsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ open Internal.Utilities.Text.Lexing
99

1010
type Lexbuf = LexBuffer<char>
1111

12-
type LexBuffer<'char> with
12+
type LexBuffer<'Char> with
1313
member GetLocalData<'T when 'T: not null> : key: string * initializer: (unit -> 'T) -> 'T
1414
member TryGetLocalData<'T when 'T: not null> : key: string -> 'T option
1515

0 commit comments

Comments
 (0)