Skip to content
This repository was archived by the owner on Jan 31, 2022. It is now read-only.

Commit ea25a3b

Browse files
committed
chore: Fix typos/capitalization/etc
1 parent 5ed9b91 commit ea25a3b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/CONTRIBUTING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ This document provides general guidelines about how to contribute to the project
55

66
### Asking Questions
77

8-
We do not use github issues for general library support. We think this questions should be posted on stack overflow using [InstantSearch](http://http://stackoverflow.com/questions/tagged/InstantSearch) tag.
8+
We do not use GitHub issues for general library support. We think these questions should be posted on Stack Overflow using [InstantSearch](http://http://stackoverflow.com/questions/tagged/InstantSearch) tag.
99

1010
### Reporting issues
1111

1212
* Use [github issues](https://github.com/algolia/InstantSearch/issues) to report a bug.
1313
* Before creating a new issue:
1414
* Make sure you are using the [latest release](https://github.com/algolia/InstantSearch/releases).
1515
* Check if the issue was [already reported or fixed](https://github.com/algolia/InstantSearch/issues?utf8=%E2%9C%93&q=is%3Aissue). Notice that it may not be released yet.
16-
* If you found a match add a brief comment "I have the same problem" or "+1". This helps prioritize the issues addressing the most common and critical first. If possible add additional information to help us reproduce and fix the issue. Please use your best judgement.
16+
* If you found a match add a brief comment "I have the same problem" or use the action `+1`. This helps prioritize the issues addressing the most common and critical first. If possible add additional information to help us reproduce and fix the issue. Please use your best judgement.
1717
* Reporting issues:
1818
* Please include the following information to help maintainers to fix the problem faster:
1919
* Xcode version you are using.
@@ -24,20 +24,20 @@ We do not use github issues for general library support. We think this questions
2424

2525
### Pull requests
2626

27-
The easiest way to start contributing is searching open issues by `help wanted` tag. We also add a `difficulty` tag (difficulty: easy, difficulty: moderate, difficulty: hard) in order to give an idea of how complex it can be to implement the feature according maintainers project experience.
27+
The easiest way to start contributing is searching open issues by `help wanted` tag. We also add a `difficulty` tag (difficulty: easy, difficulty: moderate, difficulty: hard) in order to give an idea of how complex it can be to implement the feature according to maintainers' project experience.
2828

2929
* Add test coverage to the feature or fix. We only accept new feature pull requests that have related test coverage. This allows us to keep the library stable as we move forward.
3030
* Remember to document the new feature. We do not accept new feature pull requests without its associated documentation.
3131
* In case of a new feature please update the example project showing the feature.
32-
* Please only one fix or feature per pull request. This will increase the chances your feature will be merged.
32+
* Please only one fix or feature per pull request. This will increase the chances of your feature being merged.
3333

3434

3535
###### Suggested git workflow to contribute
3636

3737
1. Fork the InstantSearch repository.
3838
2. Clone your forked project into your developer machine: `git clone [email protected]:<your-github-username>/InstantSearch.git`
3939
3. Add the original project repo as upstream repository in your forked project: `git remote add upstream [email protected]:algolia/InstantSearch.git`
40-
4. Before starting a new feature make sure your forked master branch is synchronized upstream master branch. Considering you do not mere your pull request into master you can run: `git checkout master` and then `git pull upstream master`. Optionally `git push origin master`.
40+
4. Before starting a new feature make sure your forked master branch is synchronized upstream master branch. Considering you do not merge your pull request into master you can run: `git checkout master` and then `git pull upstream master`. Optionally `git push origin master`.
4141
5. Create a new branch. Note that the starting point is the upstream master branch HEAD. `git checkout -b my-feature-name`
4242
6. Stage all your changes `git add .` and commit them `git commit -m "Your commit message"`
4343
7. Make sure your branch is up to date with upstream master, `git pull --rebase upstream master`, resolve conflicts if necessary. This will move your commit to the top of git stack.
@@ -53,7 +53,7 @@ We try to follow our [swift style guide](https://github.com/algolia/Swift-Style-
5353

5454
### Feature proposal
5555

56-
We would love to hear your ideas and make a discussions about it.
56+
We would love to hear your ideas and make a discussion about it.
5757

5858
* Use github issues to make feature proposals.
5959
* We use `type: feature request` label to mark all [feature request issues](https://github.com/algolia/InstantSearch/labels/type%3A%20feature%20request).

0 commit comments

Comments
 (0)