Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdeel Mujahid <3840695+am11@users.noreply.github.com>2021-11-27 03:32:13 +0300
committerGitHub <noreply@github.com>2021-11-27 03:32:13 +0300
commit03e0187a1a912f38e718c00614201dd20fa1bff1 (patch)
treec99b9080612c6a7b0505fdf6e616e6963df8d41f /.github
parent6f44dbe5e764972c29ef529ec3ee297b5e7a5a65 (diff)
Fix miscellaneous typos (#62062)
* Fix miscellaneous typos * Cleanup trailing whitespaces ```sh # git remote add dotnet https://github.com/dotnet/runtime && git pull --rebase dotnet main if uname 2>/devnull | grep -q Darwin; then space=" " fi git show --name-only --pretty="" HEAD...dotnet/main |\ xargs -I{} sh -c "test -f {} && sed -i$space'' 's/[[:space:]]*$//' {}" ```
Diffstat (limited to '.github')
-rw-r--r--.github/ISSUE_TEMPLATE/02_api_proposal.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/ISSUE_TEMPLATE/02_api_proposal.yml b/.github/ISSUE_TEMPLATE/02_api_proposal.yml
index 145095e3bb4..541bcf5b73c 100644
--- a/.github/ISSUE_TEMPLATE/02_api_proposal.yml
+++ b/.github/ISSUE_TEMPLATE/02_api_proposal.yml
@@ -33,7 +33,7 @@ body:
public void Fancy(T item);
}
}
- ```
+ ```
validations:
required: true
- type: textarea
@@ -41,7 +41,7 @@ body:
attributes:
label: API Usage
description: |
- Please provide code examples that highlight how the proposed API additions are meant to be consumed. This will help suggest whether the API has the right shape to be functional, performant and useable.
+ Please provide code examples that highlight how the proposed API additions are meant to be consumed. This will help suggest whether the API has the right shape to be functional, performant and usable.
placeholder: API usage
value: |
```C#
@@ -52,7 +52,7 @@ body:
// Getting the values out
foreach (var v in c)
Console.WriteLine(v);
- ```
+ ```
validations:
required: true
- type: textarea