Skip to content

Commit

Permalink
fix: improve markdown files spelling (#266)
Browse files Browse the repository at this point in the history
Co-authored-by: Denis Abakumov <[email protected]>
  • Loading branch information
denisab85 authored Mar 27, 2022
1 parent fddd7e4 commit 02bf943
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 32 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/enhancement.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ assignees: scolladon
For example, "I'm always frustrated when..."
-->

### Describe the solution you'd like
### Describe a solution you propose

---

Expand All @@ -37,5 +37,5 @@ assignees: scolladon

<!--
Is there anything else you can add about the proposal?
You might want to link to related issues here, if you haven't already.
You might want to link related issues here, if you haven't already.
-->
30 changes: 15 additions & 15 deletions .github/ISSUE_TEMPLATE/issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,33 @@ labels: bug
assignees: scolladon
---

Issue verification check :
Issue verification check:

- [ ] does the current repository is fully deployable at the commit sha given to the from parameter of the command ?
- [ ] is the current repository fully deployable at the commit SHA provided with the 'from' parameter of the command?

## What is the problem
## What is the problem?

---

<!--
Provide a clear and concise description of what the problem is.
-->

### What is parameter and their value you used
### What is the parameter and the value you used with it?

<!--
Provide the command you used and the parameters
Ex : $ sgd -r . -f HEAD^
Provide the command and the parameters you used
Ex: $ sgd -r . -f HEAD^
-->

### What is the expected result
### What is the expected result?

<!--
Provide the expected output of the command
Provide the expected content of the output folder
-->

### What is the actual result
### What is the actual result?

<!--
Provide the actual output of the command
Expand All @@ -45,10 +45,10 @@ Issue verification check :

<!--
Isolate the issue and create a branch in the playground repository
to help reproducing the actual result
Provide the repository url to access the reproducible state
Provide the sgd command to execute to reproduce
Ex :
to help reproduce the actual result.
Provide the repository url to access the reproducible state.
Provide the sgd command to execute to reproduce.
Ex:
https://github.com/scolladon/sfdx-git-delta-reproduction-playground
sgd -d -r . -f HEAD^
sfdx sgd:source:delta -d -f HEAD^
Expand All @@ -74,13 +74,13 @@ $ uname -v ; yarn -v ; node -v ; git --version ; sfdx --version ; sfdx plugins

**sgd plugin version:**

## Optional more information
## More information (optional)

---

<!--
Provide the output of those command line :
Provide the output of these commands:
$ git diff --name-status --no-renames <from> <to>
And for each SharingRule, WorkflowRule and CustomLabel files :
And for each SharingRule, WorkflowRule and CustomLabel files:
$ git diff --no-prefix <from> <to> -- <file-path>
-->
26 changes: 13 additions & 13 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
Thanks for sending a pull request! Please make sure you click the link above to view the contribution guidelines, then fill out the blanks below.
-->

## What does this pull request contains
## What does this pull request contain?

---

<!--
Check all that apply
-->

- [ ] Added for new features.
- [ ] Changed for changes in existing functionality.
- [ ] Deprecated for soon-to-be removed features.
- [ ] Removed for now removed features.
- [ ] Fixed for any bug fixes.
- [ ] Security in case of vulnerabilities.
- [ ] Added (for new features).
- [ ] Changed (for changes in existing functionality).
- [ ] Deprecated (for soon-to-be removed features).
- [ ] Removed (for now removed features).
- [ ] Fixed (for any bug fixes).
- [ ] Security (for vulnerability fixes).

## Explain your changes

Expand All @@ -30,23 +30,23 @@ Thanks for sending a pull request! Please make sure you click the link above to
---

<!--
Provide the issue link or remove this section
EX : #<issue-number>
Provide an issue link or remove this section
Ex: #<issue-number>
-->

closes #

- [ ] Jest test to check the fix is applied are added.
- [ ] Jest test added to check the fix is applied.

## Any particular element to being able to test locally
## Any particular element that can be tested locally

---

<!--
Provide any new parameters or behaviour with current parameters
Provide any new parameters or new behaviour with existing parameters
-->

## Any other comments?
## Any other comments

---

Expand Down
4 changes: 2 additions & 2 deletions PUBLISHING.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ Here are the steps to publish a version
$ yarn release
```

It will :
This will:

- Create a new version based on the commit types from head and package.json version
- Create the changelog with all the commit from head and the last tag version following [keepachangelog](https://keepachangelog.com/en/1.0.0/)
- Create a changelog with all the commit from head and the last tag version following [keepachangelog](https://keepachangelog.com/en/1.0.0/)
- Create a new commit with the generated changelog, update package.json
- Create a new tag following the semver
- Push this tag to the remote
Expand Down

0 comments on commit 02bf943

Please sign in to comment.