@@ -43,9 +43,9 @@ open System
4343open System.IO
4444open System.Text
4545
46- // Intialize output and input streams
47- let sbOut = StringBuilder()
48- let sbErr = StringBuilder()
46+ // Initialize output and input streams
47+ let sbOut = new StringBuilder()
48+ let sbErr = new StringBuilder()
4949let inStream = new StringReader( " " )
5050let outStream = new StringWriter( sbOut)
5151let errStream = new StringWriter( sbErr)
@@ -121,7 +121,7 @@ result and an exception.
121121
122122The result part of `` EvalExpression `` and `` EvalExpressionNonThrowing `` is an optional `` FSharpValue `` .
123123If that value is not present then it just indicates that the expression didn't have a tangible
124- result that could be represented as a .NET object. This siutation shouldn't actually
124+ result that could be represented as a .NET object. This situation shouldn't actually
125125occur for any normal input expressions, and only for primitives used in libraries.
126126*)
127127
@@ -239,7 +239,7 @@ The 'fsi' object
239239------------------
240240
241241If you want your scripting code to be able to access the 'fsi' object, you should pass in an implementation of this object explicitly.
242- Normally the one fromm FSharp.Compiler.Interactive.Settings.dll is used.
242+ Normally the one from FSharp.Compiler.Interactive.Settings.dll is used.
243243*)
244244
245245let fsiConfig2 = FsiEvaluationSession.GetDefaultConfiguration( fsiSession)
0 commit comments