Skip to content

Commit

Permalink
Updated to F# v1.9.6.16
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry Pierson committed Jun 23, 2009
1 parent 7fd0fa4 commit 9d5196a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
3 changes: 0 additions & 3 deletions Cashel/Cashel.Peg/Cashel.Peg.fsproj
Expand Up @@ -32,9 +32,6 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="peg.fs" />
Expand Down
4 changes: 2 additions & 2 deletions Cashel/Cashel.Peg/peg.fs
Expand Up @@ -120,10 +120,10 @@ and SequenceItem =
with
override this.ToString() =
let sb = new System.Text.StringBuilder("SequenceItem ")
if Option.is_some this.itemPrefix then
if Option.isSome this.itemPrefix then
sb.AppendFormat("{0} ", (Option.get this.itemPrefix)) |> ignore
sb.Append(this.primaryItem) |> ignore
if Option.is_some this.itemSuffix then
if Option.isSome this.itemSuffix then
sb.AppendFormat(" {0}", (Option.get this.itemSuffix)) |> ignore
sb.ToString()

Expand Down
7 changes: 4 additions & 3 deletions Cashel/Cashel/Cashel.fsproj
Expand Up @@ -30,11 +30,12 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>3</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OtherFlags>
</OtherFlags>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="parser.fs" />
Expand Down

0 comments on commit 9d5196a

Please sign in to comment.