Skip to content

Commit e97a5a2

Browse files
committed
A few fixes to readme
1 parent d635cae commit e97a5a2

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![License](https://img.shields.io/github/license/Genbox/FastData)](https://github.com/Genbox/FastData/blob/master/LICENSE.txt)
44

5-
![Docs/FastData.png](Docs/FastData.png)
5+
![Docs/FastData.png](./Docs/FastData.png)
66

77
## Description
88

@@ -12,18 +12,19 @@ in many different languages (C#, C++, Rust, etc.), ready for inclusion in your p
1212

1313
## Download
1414

15+
* Executable: [Executable](https://github.com/Genbox/FastData/releases)
16+
* C# source generator: [![C# source generator](https://img.shields.io/nuget/v/Genbox.FastData.SourceGenerator.svg?style=flat-square&label=nuget)](https://www.nuget.org/packages/Genbox.FastData.SourceGenerator/)
1517
* C# library: [![C# library](https://img.shields.io/nuget/v/Genbox.FastData.Generator.CSharp.svg?style=flat-square&label=nuget)](https://www.nuget.org/packages/Genbox.FastData.Generator.CSharp/)
1618
* .NET Tool: [![.NET Tool](https://img.shields.io/nuget/v/Genbox.FastData.Cli.svg?style=flat-square&label=nuget)](https://www.nuget.org/packages/Genbox.FastData.Cli/)
1719

18-
19-
## Use case
20+
## Use Case
2021

2122
Imagine a scenario where you have a predefined list of words (e.g., dog breeds) and need to check whether a specific dog
2223
breed exists in the set.
23-
Usually you create an array and look up the value. However, this is far from optimal and is lacks several optimizations.
24+
Usually you create an array and look up the value. However, this is far from optimal and lacks several optimizations.
2425

2526
```csharp
26-
string[] breeds = ["Labrador", "German Shepherd", "Golden Retriever"];
27+
string[] breeds = { "Labrador", "German Shepherd", "Golden Retriever" };
2728

2829
if (breeds.Contains("Beagle"))
2930
Console.WriteLine("It contains Beagle");

0 commit comments

Comments
 (0)