@@ -62,7 +62,7 @@ module internal Utils =
6262 else
6363 None
6464
65- [<return : Struct>]
65+ [<return : Struct>]
6666 let (| MeasureOne | _ |) ( typ : FSharpType ) =
6767 if
6868 typ.HasTypeDefinition
@@ -1758,7 +1758,7 @@ module internal SymbolReader =
17581758 [ let mutable line = " "
17591759
17601760 while ( line <- reader.ReadLine()
1761- not ( isNull line)) do
1761+ not ( isNull line)) do
17621762 yield line ]
17631763
17641764 String.removeSpaces lines
@@ -1906,14 +1906,14 @@ module internal SymbolReader =
19061906 let name = elem.Attribute( XName.Get " name" )
19071907 let nameAsHtml = HttpUtility.HtmlEncode name.Value
19081908
1909- if not ( isNull name) then
1909+ if not ( isNull name) then
19101910 html.AppendFormat( " <span class=\" fsdocs-param-name\" >{0}</span>" , nameAsHtml)
19111911 |> ignore
19121912 | " see"
19131913 | " seealso" ->
19141914 let cref = elem.Attribute( XName.Get " cref" )
19151915
1916- if not ( isNull cref) then
1916+ if not ( isNull cref) then
19171917 if System.String.IsNullOrEmpty( cref.Value) || cref.Value.Length < 3 then
19181918 printfn " ignoring invalid cref specified in: %A " e
19191919
@@ -2019,7 +2019,7 @@ module internal SymbolReader =
20192019 let remarks =
20202020 let remarkNodes = doc.Elements( XName.Get " remarks" ) |> Seq.toList
20212021
2022- if not ( List.isEmpty remarkNodes) then
2022+ if not ( List.isEmpty remarkNodes) then
20232023 let html = new StringBuilder()
20242024
20252025 for ( id, e) in List.indexed remarkNodes do
@@ -2054,7 +2054,7 @@ module internal SymbolReader =
20542054 [ for e in exceptionNodes do
20552055 let cref = e.Attribute( XName.Get " cref" )
20562056
2057- if not ( isNull cref) then
2057+ if not ( isNull cref) then
20582058 if String.IsNullOrEmpty( cref.Value) || cref.Value.Length < 3 then
20592059 printfn " Warning: Invalid cref specified in: %A " doc
20602060
@@ -2822,7 +2822,7 @@ module internal SymbolReader =
28222822 [ for e in doc.Descendants( XName.Get " member" ) do
28232823 let attr = e.Attribute( XName.Get " name" )
28242824
2825- if ( not ( isNull attr)) && not ( String.IsNullOrEmpty( attr.Value)) then
2825+ if ( not ( isNull attr)) && not ( String.IsNullOrEmpty( attr.Value)) then
28262826 yield attr.Value, e ] do
28272827 // NOTE: We completely ignore duplicate keys and I don't see
28282828 // an easy way to detect where "value" is coming from, because the entries
0 commit comments