Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small textual fixes #180

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ A curated list of awesome F# frameworks, libraries, software and resources.
- [Creating type providers](#creating-type-providers)
- [Visualization](#visualization)
- [Web frameworks](#web-frameworks)
- [.Net Core Templates](#net-core-templates)
- [.NET Core Templates](#net-core-templates)
- [Resources](#resources)
- [Blogs](#blogs)
- [Books](#books)
Expand Down Expand Up @@ -132,7 +132,7 @@ Looking to have a more enjoyable experience when consuming a popular .NET librar
- [F# Playground](https://github.com/Seng-Jik/FSharpPlayground) - Minimal playground for F#.
- [JetBrains Rider](https://www.jetbrains.com/rider) - Cross-platform .NET IDE with F# support (Proprietary, free for non-commercial use).
- [MonoDevelop](http://www.monodevelop.com/) - Cross-platform IDE mostly aimed at Mono/.NET developers.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

123

- [Visual Studio](https://www.visualstudio.com/) - IDE from Microsoft with first class F# support(Windows only) (Proprietary).
- [Visual Studio](https://www.visualstudio.com/) - IDE from Microsoft with first class F# support (Windows only, Proprietary).

### Editor plugins

Expand Down Expand Up @@ -196,7 +196,7 @@ Looking to have a more enjoyable experience when consuming a popular .NET librar
## Logging

- [FsLibLog](https://github.com/TheAngryByrd/FsLibLog) - FsLibLog is a single file you can copy paste or add through Paket GitHub dependencies to provide your F# library with a logging abstraction.
- [Logary](https://github.com/logary/logary/) - Logary is a high performance, multi-target logging, metric, tracing and health-check library for mono and .Net.
- [Logary](https://github.com/logary/logary/) - Logary is a high performance, multi-target logging, metric, tracing and health-check library for mono and .NET.

## Package Management

Expand Down Expand Up @@ -231,7 +231,7 @@ Looking to have a more enjoyable experience when consuming a popular .NET librar

## Testing
<!--lint disable double-link -->
- [altcover](https://github.com/SteveGilham/altcover) - Cross-platform coverage gathering and processing tool set for .net/.net core and Mono.
- [altcover](https://github.com/SteveGilham/altcover) - Cross-platform coverage gathering and processing tool set for .NET/.NET core and Mono.
- [canopy](https://github.com/lefthandedgoat/canopy) - F# web automation and testing framework.
- [Expecto](https://github.com/haf/expecto) - Smooth testing framework for F# with tests-as-values and parallelism by default.
- [Faqt](https://github.com/cmeeren/Faqt) - Fantastic fluent assertions for your F# tests and domain code.
Expand Down Expand Up @@ -303,7 +303,7 @@ Looking to have a more enjoyable experience when consuming a popular .NET librar
- [WebSharper](https://github.com/intellifactory/websharper) - F#-based web programming platform including a compiler from F# code to JavaScript.
<!--lint enable double-link -->

## .Net Core Templates
## .NET Core Templates
<!--lint disable awesome-list-item-->
- [ASP.NET Core WebAPI F# Template](https://github.com/MNie/FSharpNetCoreWebApiTemplate) - `dotnet new -i WebAPI.FSharp.Template::*`
- [Expecto Template](https://github.com/MNie/Expecto.Template) - `dotnet new -i Expecto.Template::*`
Expand Down
2 changes: 1 addition & 1 deletion update-toc.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ let tocText =
$"{indent}- [{text}]({getLink text})"
)
|> String.concat "\n"
) + "\n"
) + "\n\n"

let updateHeader (header: HeadingBlock) (newContent: string) =
let parent = header.Parent
Expand Down