Skip to content

Commit b07a0c5

Browse files
author
7sharp9
committed
formatting
1 parent ea3cc68 commit b07a0c5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/Myriad.Plugins.Example1/Library.fs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ open FsAst
99
[<MyriadGenerator("example1")>]
1010
type Example1Gen() =
1111
interface IMyriadGenerator with
12-
member __.ValidInputExtensions = seq {".txt"}
13-
member __.Generate(context: GeneratorContext) =
12+
member _.ValidInputExtensions = seq {".txt"}
13+
member _.Generate(context: GeneratorContext) =
1414

1515
let example1Namespace =
1616
context.ConfigKey
@@ -28,7 +28,7 @@ type Example1Gen() =
2828
let allModules =
2929
File.ReadAllLines context.InputFilename
3030
|> Seq.map (fun moduleName ->
31-
let componentInfo = SynComponentInfoRcd.Create [ Ident.Create (moduleName) ]
31+
let componentInfo = SynComponentInfoRcd.Create [ Ident.Create moduleName ]
3232
let module' = SynModuleDecl.CreateNestedModule(componentInfo, [ let42 ])
3333
module')
3434
|> Seq.toList

0 commit comments

Comments
 (0)