Skip to content

Commit

Permalink
readme + nuget description
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacharyPatten committed Jun 10, 2021
1 parent 823a001 commit 83756bb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<a href="https://github.com/ZacharyPatten/Towel/blob/master/License.md" alt="License"><img src="https://img.shields.io/badge/license-MIT-green.svg" title="Go To License" alt="License"/></a>
</p>

> _**Note** This project has a goal of keeping up-to-date on modern coding practices rather than maintaining backwards compatibility, such as targetting the latest non-preview version of .NET._
> _**Note** This project has a goal of keeping up-to-date on modern coding practices rather than maintaining backwards compatibility such as targetting the latest non-preview version of .NET and embracing favorable breaking changes ("Semantic Versioning" is not being respected at this time)._
## Getting Started

Expand Down Expand Up @@ -191,9 +191,9 @@
> {
> internal static Func<T, T, T> Function = (T a, T b) =>
> {
> ParameterExpression A = Expression.Parameter(typeof(T));
> ParameterExpression B = Expression.Parameter(typeof(T));
> Expression BODY = Expression.Add(A, B);
> var A = Expression.Parameter(typeof(T));
> var B = Expression.Parameter(typeof(T));
> var BODY = Expression.Add(A, B);
> Function = Expression.Lambda<Func<T, T, T>>(BODY, A, B).Compile();
> return Function(a, b);
> };
Expand Down
5 changes: 1 addition & 4 deletions Sources/Towel/Towel.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<PackageId>Towel</PackageId>
<PackageIcon>icon.png</PackageIcon>
<Authors>Zachary Patten</Authors>
<Description>A .NET library intended to add core functionality and make advanced topics as clean and simple as possible: data structures, algorithms, mathematics, metadata, extensions, console, and more. :)</Description>
<Description>A .NET library intended to make coding a bit more towelerable: data structures, algorithms, mathematics, metadata, extensions, console, and more. :)</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>Towel, library, framework, algorithms, data-structures, mathematics, extensions</PackageTags>
<PackageProjectUrl></PackageProjectUrl>
Expand Down Expand Up @@ -41,7 +41,4 @@
<_Parameter1>Towel_Testing</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>
</Project>

0 comments on commit 83756bb

Please sign in to comment.