Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzysztof-Cieslak committed May 20, 2015
1 parent 7ce97e3 commit 44d3d3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions FSharp.AutoComplete/Program.fs
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,8 @@ module internal CompletionUtils =
0x0008, ("Interface", "I")
0x000e, ("Module", "N") (* module *)
0x000f, ("Namespace", "N")
0x000c, ("Method", "m")
0x000d, ("Extension Method", "m") (* method2 ? *)
0x000c, ("Method", "M")
0x000d, ("Extension Method", "M") (* method2 ? *)
0x00011, ("Property", "P")
0x0005, ("Event", "e")
0x0007, ("Field", "F") (* fieldblue ? *)
Expand Down Expand Up @@ -523,7 +523,7 @@ module internal Main =
match state.OutputMode with
| Text ->
printAgent.WriteLine "DATA: completion"
for d in decls.Items do printAgent.WriteLine(sprintf "%s" d.Name)
for d in decls.Items do printAgent.WriteLine(d.Name)
printAgent.WriteLine "<<EOF>>"
main state
| Json ->
Expand Down

0 comments on commit 44d3d3b

Please sign in to comment.