From 6c7857541ad5c90207065e714c561bae27a7f5d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Schmincke?= Date: Sun, 22 Mar 2026 12:53:07 +0100 Subject: [PATCH] Correct spelling and grammar errors --- .NET/README.md | 10 +++++----- README.md | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.NET/README.md b/.NET/README.md index 35b3a13..a812c38 100644 --- a/.NET/README.md +++ b/.NET/README.md @@ -1,16 +1,16 @@ # .NET -These are the configuration files for .NET projects and solutions. +These are the configuration files for .NET projects or solutions. You can copy these files into the root of your .NET solution in order to activate the conventions. ### directory.build.props -The "directory.build.props" contains important project configuration, that need to be set for all .net projects in your solution. Some global compiler configuration will be set and the static analyzers get importet via NuGet. +The `directory.build.props` contains important project configuration, that need to be set for all .NET projects in your solution. It will set some global compiler configuration and the static analyzers get imported via NuGet. ### .editorconfig -The ".editorconfig" contains configuration for your code editor and the ruleset of the static analyzers. Copy this file into the root of you repository so that it is active for all files and folders. +The `.editorconfig` contains configuration for your code editor and the ruleset of the static analyzers. Copy this file into the root of you repository so that it is active for all files and folders. #### Analyzers @@ -25,7 +25,7 @@ The ".editorconfig" contains configuration for your code editor and the ruleset #### Priority -The analyzers are handled with priority. That means, that a violation of a rule from a analyzer with a higher priority overrides a violation of a lower priority analyzer. In case of conflicting rules from different analyzers, the rule from analyzer with the lower gets changed or deactivated. +The analyzers are handled with priority. That means, that a violation of a rule from an analyzer with a higher priority overrides a violation of a lower priority analyzer. In case of conflicting rules from different analyzers, the rule from the analyzer with the lower priority gets changed or deactivated. Priority of analyzers: @@ -38,4 +38,4 @@ Priority of analyzers: ### stylecop.json -The "stylecop.json" contains the configuration for "StyleCop.Analyzers", that cannot be set via the ".editorconfig". This file must be copied into the root of your repository as it gets imported from there into all .NET projects by the "directory.build.props" +The `stylecop.json` contains the configuration for "StyleCop.Analyzers", that cannot be set via the `.editorconfig`. This file must be copied into the root of your repository as it gets imported from there into all .NET projects by the `directory.build.props`. diff --git a/README.md b/README.md index 64792bf..5cded52 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ # Coding Conventions -This project hosts the configuraton, rules and conventions that must be followed when developing software. +This project hosts the configuration, rules and conventions that must be followed when developing software. -You can customize this template locally in the projects, but all changes have to be explained by a comment. +You can customize this template locally in your projects, but all changes have to be explained by a comment. ## Structure -Configuration files that are importet into the IDE globally are stored in the root of this repository. There are folders for files that cover a specific development environments or frameworks. +Configuration files that are imported into the IDE globally are stored in the root of this repository. There are folders for files that cover specific development environments or frameworks. | Folder | Description | |--------|----------------------------------------------|