File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
docs/fsharp/language-reference Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,9 +24,9 @@ open System.Diagnostics
24
24
open System.Runtime.CompilerServices
25
25
26
26
type Tracer() =
27
- member __.DoTrace(msg : string,
27
+ member __.DoTrace(message : string,
28
28
[<CallerMemberName>] ?memberName: string,
29
- [<CallerFilePath>] ?path: string
29
+ [<CallerFilePath>] ?path: string,
30
30
[<CallerLineNumber>] ?line: int) =
31
31
Trace.WriteLine(sprintf "Message: %s" message)
32
32
match (memberName, path, line) with
@@ -68,4 +68,4 @@ The following chart shows the member names that are returned when you use the Ca
68
68
69
69
- [ Attributes] ( attributes.md )
70
70
- [ Named arguments] ( parameters-and-arguments.md#named-arguments )
71
- - [ Optional parameters] ( parameters-and-arguments.md#optional-parameters )
71
+ - [ Optional parameters] ( parameters-and-arguments.md#optional-parameters )
You can’t perform that action at this time.
0 commit comments