Skip to content

Commit

Permalink
fix the "Define" active pattern (ionide#1170)
Browse files Browse the repository at this point in the history
  • Loading branch information
dawedawe authored and nojaf committed Nov 3, 2023
1 parent f0a5628 commit 9529a28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FsAutoComplete.Core/Lexer.fs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module Lexer =

[<return: Struct>]
let (|Define|_|) (a: string) =
if a.StartsWith "--defin:" then
if a.StartsWith "--define:" then
ValueSome(a.[9..])
else
ValueNone
Expand Down

0 comments on commit 9529a28

Please sign in to comment.