Skip to content

Commit f37bb51

Browse files
committed
Fixes description of package in assemblyinfo files
1 parent 82e8c8b commit f37bb51

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

build.fsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ open System
1515
open System.IO
1616

1717
let project = "FsToolkit.ErrorHandling"
18-
let summary = "An opinionated error handling library for F#"
18+
let summary = "FsToolkit.ErrorHandling is a utility library to work with the Result type in F#, and allows you to do clear, simple and powerful error handling."
1919
let configuration = "Release"
2020
let solutionFile = "FsToolkit.ErrorHandling.sln"
2121

@@ -27,7 +27,6 @@ let distGlob = distDir @@ "*.nupkg"
2727
let githubToken = Environment.environVarOrNone "GITHUB_TOKEN"
2828
Option.iter(TraceSecrets.register "<GITHUB_TOKEN>" )
2929

30-
3130
let nugetToken = Environment.environVarOrNone "NUGET_TOKEN"
3231
Option.iter(TraceSecrets.register "<NUGET_TOKEN>")
3332

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- <Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" /> -->
33

44
<PropertyGroup>
5-
<Description> FsToolkit.ErrorHandling is a utility library to work with the Result type in F#, and allows you to do clear, simple and powerful error handling.</Description>
5+
<Description>FsToolkit.ErrorHandling is a utility library to work with the Result type in F#, and allows you to do clear, simple and powerful error handling.</Description>
66
<PackageLicenseFile>License</PackageLicenseFile>
77
</PropertyGroup>
88
<ItemGroup>

0 commit comments

Comments
 (0)