diff --git a/src/FSharp.Core/prim-types.fs b/src/FSharp.Core/prim-types.fs index c3df910fafd6dc82d4fe3db706295b3406aa16e7..4f7486c8fe57d0dfc71d27621a86b730fa1f4ed9 100644 --- a/src/FSharp.Core/prim-types.fs +++ b/src/FSharp.Core/prim-types.fs @@ -251,10 +251,10 @@ namespace Microsoft.FSharp.Core module internal ExperimentalAttributeMessages = [] - let RequiresPreview : string = "Experimental library feature, requires '--langversion:preview'" + let RequiresPreview: string = "Experimental library feature, requires '--langversion:preview'" [] - let NotSupportedYet : string = "This construct is not supported by your version of the F# compiler" + let NotSupportedYet: string = "This construct is not supported by your version of the F# compiler" [] [] diff --git a/src/FSharp.Core/prim-types.fsi b/src/FSharp.Core/prim-types.fsi index 3534c76a4864d44a655388e974f97cda3c501da0..af9b1c1e5a3851df4da5dfdbf25cf3a6207c5d2c 100644 --- a/src/FSharp.Core/prim-types.fsi +++ b/src/FSharp.Core/prim-types.fsi @@ -1007,7 +1007,6 @@ namespace Microsoft.FSharp.Core /// . /// /// Basic Types with Units of Measure - [] [] type nativeint<[] 'Measure> = nativeint @@ -1017,7 +1016,6 @@ namespace Microsoft.FSharp.Core /// . /// /// Basic Types with Units of Measure - [] [] type uint<[] 'Measure> = uint @@ -1027,7 +1025,6 @@ namespace Microsoft.FSharp.Core /// . /// /// Basic Types with Units of Measure - [] [] type byte<[] 'Measure> = byte @@ -1037,7 +1034,6 @@ namespace Microsoft.FSharp.Core /// . /// /// Basic Types with Units of Measure - [] [] type uint16<[] 'Measure> = uint16 @@ -1047,7 +1043,6 @@ namespace Microsoft.FSharp.Core /// . /// /// Basic Types with Units of Measure - [] [] type uint64<[] 'Measure> = uint64 @@ -1057,7 +1052,6 @@ namespace Microsoft.FSharp.Core /// . /// /// Basic Types with Units of Measure - [] [] type unativeint<[] 'Measure> = unativeint @@ -1067,7 +1061,6 @@ namespace Microsoft.FSharp.Core /// . /// /// Basic Types with Units of Measure - [] type double<[] 'Measure> = float<'Measure> /// The type of single-precision floating point numbers, annotated with a unit of measure. @@ -1076,7 +1069,6 @@ namespace Microsoft.FSharp.Core /// . /// /// Basic Types with Units of Measure - [] type single<[] 'Measure> = float32<'Measure> /// The type of 8-bit signed integer numbers, annotated with a unit of measure. @@ -1085,7 +1077,6 @@ namespace Microsoft.FSharp.Core /// . /// /// Basic Types with Units of Measure - [] type int8<[] 'Measure> = sbyte<'Measure> /// The type of 32-bit signed integer numbers, annotated with a unit of measure. @@ -1094,7 +1085,6 @@ namespace Microsoft.FSharp.Core /// . /// /// Basic Types with Units of Measure - [] type int32<[] 'Measure> = int<'Measure> /// The type of 8-bit unsigned integer numbers, annotated with a unit of measure. @@ -1103,7 +1093,6 @@ namespace Microsoft.FSharp.Core /// . /// /// Basic Types with Units of Measure - [] type uint8<[] 'Measure> = byte<'Measure> /// The type of 32-bit unsigned integer numbers, annotated with a unit of measure. @@ -1112,7 +1101,6 @@ namespace Microsoft.FSharp.Core /// . /// /// Basic Types with Units of Measure - [] type uint32<[] 'Measure> = uint<'Measure> /// Represents a managed pointer in F# code. @@ -1413,7 +1401,6 @@ namespace Microsoft.FSharp.Core /// The input nativeint. /// /// The nativeint with units-of-measure. - [] val inline IntPtrWithMeasure: input: nativeint -> nativeint<'Measure> /// Creates a uint value with units-of-measure @@ -1421,7 +1408,6 @@ namespace Microsoft.FSharp.Core /// The input uint. /// /// The uint with units-of-measure. - [] val inline UInt32WithMeasure: input: uint -> uint<'Measure> /// Creates a uint64 value with units-of-measure @@ -1429,7 +1415,6 @@ namespace Microsoft.FSharp.Core /// The input uint64. /// /// The uint64 with units-of-measure. - [] val inline UInt64WithMeasure: input: uint64 -> uint64<'Measure> /// Creates a uint16 value with units-of-measure @@ -1437,7 +1422,6 @@ namespace Microsoft.FSharp.Core /// The input uint16. /// /// The uint16 with units-of-measure. - [] val inline UInt16WithMeasure: input: uint16 -> uint16<'Measure> /// Creates a byte value with units-of-measure @@ -1445,7 +1429,6 @@ namespace Microsoft.FSharp.Core /// The input byte. /// /// The byte with units-of-measure. - [] val inline ByteWithMeasure: input: byte -> byte<'Measure> /// Creates a unativeint value with units-of-measure @@ -1453,7 +1436,6 @@ namespace Microsoft.FSharp.Core /// The input unativeint. /// /// The unativeint with units-of-measure. - [] val inline UIntPtrWithMeasure: input: unativeint -> unativeint<'Measure> /// Parse an int32 according to the rules used by the overloaded 'int32' conversion operator when applied to strings