Skip to content

Commit

Permalink
chore(*): Some spell checking
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmlnc committed Apr 29, 2018
1 parent e194abd commit a2e0c70
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Please note that this project is released with a [Contributor Code of Conduct](C

## Contribution Guidelines

There are a couple of ways you can contribute to this repo:
There are a couple of ways you can contribute to this repository:

* **Ideas, feature requests and bugs**: We are open to all ideas and we want to get rid of bugs! Use the [Issues section](https://github.com/mrmlnc/fast-glob/issues) to either report a new issue, provide your ideas or contribute to existing threads.
* **Documentation**: Found a typo or strangely worded sentences? Submit a PR!
Expand All @@ -16,15 +16,15 @@ There are a couple of ways you can contribute to this repo:

Before you create a new Issue:

* Check the [Issues](https://github.com/mrmlnc/fast-glob/issues) on Github to ensure one doesn't already exist.
* Check the [Issues](https://github.com/mrmlnc/fast-glob/issues) on GitHub to ensure one doesn't already exist.
* Clearly describe the issue, including the steps to reproduce the issue.

### Making Changes

#### Getting Started

* Install [Node.js](https://nodejs.org/en/).
* Fork the project and clone the fork repo. ([how to create fork?](https://help.github.com/articles/fork-a-repo/#fork-an-example-repository)).
* Fork the project and clone the fork repository. ([how to create fork?](https://help.github.com/articles/fork-a-repo/#fork-an-example-repository)).
* Create a topic branch from the master branch.
* Run `yarn` or `npm install` to install the application dependencies.

Expand Down
4 changes: 2 additions & 2 deletions src/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ describe('Package', () => {
});

describe('.stream', () => {
it('should retruns entries', (done) => {
it('should returns entries', (done) => {
const expected: EntryItem[] = [
'fixtures/file.md',
'fixtures/first/file.md',
Expand All @@ -96,7 +96,7 @@ describe('Package', () => {
});
});

it('should retruns entries (two sources)', (done) => {
it('should returns entries (two sources)', (done) => {
const expected: EntryItem[] = [
'fixtures/first/file.md',
'fixtures/first/nested/directory/file.md',
Expand Down
2 changes: 1 addition & 1 deletion src/managers/tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export function getPositivePatterns(patterns: Pattern[]): Pattern[] {
}

/**
* Retrun only negative patterns.
* Return only negative patterns.
*/
export function getNegativePatternsAsPositive(patterns: Pattern[], ignore: Pattern[]): Pattern[] {
const negative = patternUtils.getNegativePatterns(patterns).concat(ignore);
Expand Down

0 comments on commit a2e0c70

Please sign in to comment.