Skip to content

Commit f8e1f1d

Browse files
committed
docs: fix grammatical errors in README.md
Signed-off-by: DaryaYuk <[email protected]>
1 parent 592e516 commit f8e1f1d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public async Task Example()
106106
### Providers
107107

108108
[Providers](https://openfeature.dev/docs/reference/concepts/provider) are an abstraction between a flag management system and the OpenFeature SDK.
109-
Look [here](https://openfeature.dev/ecosystem?instant_search%5BrefinementList%5D%5Btype%5D%5B0%5D=Provider&instant_search%5BrefinementList%5D%5Btechnology%5D%5B0%5D=.NET) for a complete list of available providers.
109+
Here is [a complete list of available providers](https://openfeature.dev/ecosystem?instant_search%5BrefinementList%5D%5Btype%5D%5B0%5D=Provider&instant_search%5BrefinementList%5D%5Btechnology%5D%5B0%5D=.NET).
110110

111111
If the provider you're looking for hasn't been created yet, see the [develop a provider](#develop-a-provider) section to learn how to build it yourself.
112112

@@ -117,7 +117,7 @@ Api.Instance.SetProvider(new MyProvider());
117117
```
118118

119119
In some situations, it may be beneficial to register multiple providers in the same application.
120-
This is possible using [named clients](#named-clients), which is covered in more details below.
120+
This is possible using [named clients](#named-clients), which is covered in more detail below.
121121

122122
### Targeting
123123

@@ -151,7 +151,7 @@ bool flagValue = await client.GetBooleanValue("some-flag", false, reqCtx);
151151
### Hooks
152152

153153
[Hooks](https://openfeature.dev/docs/reference/concepts/hooks) allow for custom logic to be added at well-defined points of the flag evaluation life-cycle.
154-
Look [here](https://openfeature.dev/docs/reference/technologies/server/dotnet/) for a complete list of available hooks.
154+
Here is [a complete list of available hooks](https://openfeature.dev/docs/reference/technologies/server/dotnet/).
155155
If the hook you're looking for hasn't been created yet, see the [develop a hook](#develop-a-hook) section to learn how to build it yourself.
156156

157157
Once you've added a hook as a dependency, it can be registered at the global, client, or flag invocation level.
@@ -170,12 +170,12 @@ var value = await client.GetBooleanValue("boolFlag", false, context, new FlagEva
170170

171171
### Logging
172172

173-
The .NET SDK uses Microsoft Extensions Logger. See the [manual](https://learn.microsoft.com/en-us/dotnet/core/extensions/logging?tabs=command-line) for complete documentation.
173+
The .NET SDK uses Microsoft.Extensions.Logging. See the [manual](https://learn.microsoft.com/en-us/dotnet/core/extensions/logging?tabs=command-line) for a complete documentation.
174174

175175
### Named clients
176176

177177
Clients can be given a name.
178-
A name is a logical identifier which can be used to associate clients with a particular provider.
178+
A name is a logical identifier that can be used to associate clients with a particular provider.
179179
If a name has no associated provider, the global provider is used.
180180

181181
```csharp
@@ -274,17 +274,17 @@ Built a new hook? [Let us know](https://github.com/open-feature/openfeature.dev/
274274
## ⭐️ Support the project
275275

276276
- Give this repo a ⭐️!
277-
- Follow us social media:
277+
- Follow us on social media:
278278
- Twitter: [@openfeature](https://twitter.com/openfeature)
279279
- LinkedIn: [OpenFeature](https://www.linkedin.com/company/openfeature/)
280280
- Join us on [Slack](https://cloud-native.slack.com/archives/C0344AANLA1)
281-
- For more check out our [community page](https://openfeature.dev/community/)
281+
- For more information, check out our [community page](https://openfeature.dev/community/)
282282

283283
## 🤝 Contributing
284284

285285
Interested in contributing? Great, we'd love your help! To get started, take a look at the [CONTRIBUTING](CONTRIBUTING.md) guide.
286286

287-
### Thanks to everyone that has already contributed
287+
### Thanks to everyone who has already contributed
288288

289289
<a href="https://github.com/open-feature/dotnet-sdk/graphs/contributors">
290290
<img src="https://contrib.rocks/image?repo=open-feature/dotnet-sdk" />

0 commit comments

Comments
 (0)