Skip to content

Commit

Permalink
Merge pull request #2726 from XhmikosR/master-xmr-typos
Browse files Browse the repository at this point in the history
Assorted typo fixes.
  • Loading branch information
xzyfer committed Aug 30, 2019
2 parents 2513e6a + 8421979 commit 96aa279
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
# node-sass

#### Supported Node.js versions vary by release, please consult the [releases page](https://github.com/sass/node-sass/releases). Below is a quick guide for minimium support:
#### Supported Node.js versions vary by release, please consult the [releases page](https://github.com/sass/node-sass/releases). Below is a quick guide for minimum support:

NodeJS | Minimum node-sass version | Node Module
--------|--------------------------|------------
Expand Down
2 changes: 1 addition & 1 deletion lib/extensions.js
Expand Up @@ -214,7 +214,7 @@ function getBinaryName() {
* By default fetch from the node-sass distribution
* site on GitHub.
*
* The default URL can be overriden using
* The default URL can be overridden using
* the environment variable SASS_BINARY_SITE,
* .npmrc variable sass_binary_site or
* or a command line option --sass-binary-site:
Expand Down
16 changes: 8 additions & 8 deletions test/watcher.js
Expand Up @@ -35,7 +35,7 @@ describe('watcher', function() {
]);
});

it('should record its decendants as added', function() {
it('should record its descendants as added', function() {
var file = path.join(main, 'partials', '_one.scss');
var files = watcher.changed(file);
assert.deepEqual(files.added, [
Expand All @@ -59,7 +59,7 @@ describe('watcher', function() {
]);
});

it('should record its decendants as added', function() {
it('should record its descendants as added', function() {
var file = path.join(main, 'one.scss');
var files = watcher.changed(file);
assert.deepEqual(files.added, [
Expand Down Expand Up @@ -112,7 +112,7 @@ describe('watcher', function() {
assert.deepEqual(files.added, []);
});

it('should record its decendants as added', function() {
it('should record its descendants as added', function() {
var file = path.join(main, 'partials', '_one.scss');
var files = watcher.added(file);
assert.deepEqual(files.added, [
Expand Down Expand Up @@ -140,7 +140,7 @@ describe('watcher', function() {
assert.deepEqual(files.added, []);
});

it('should record its decendants as added', function() {
it('should record its descendants as added', function() {
var file = path.join(main, 'one.scss');
var files = watcher.added(file);
assert.deepEqual(files.added, [
Expand Down Expand Up @@ -248,7 +248,7 @@ describe('watcher', function() {
describe('when a file is changed', function() {
describe('and it is in the graph', function() {
describe('if it is a partial', function() {
it('should record its decendents as added', function() {
it('should record its descendants as added', function() {
var file = path.join(main, 'partials', '_one.scss');
var files = watcher.changed(file);
assert.deepEqual(files.added, [
Expand All @@ -272,7 +272,7 @@ describe('watcher', function() {
});

describe('if it is not a partial', function() {
it('should record its decendents as added', function() {
it('should record its descendants as added', function() {
var file = path.join(main, 'one.scss');
var files = watcher.changed(file);
assert.deepEqual(files.added, [
Expand Down Expand Up @@ -338,7 +338,7 @@ describe('watcher', function() {
assert.deepEqual(files.added, []);
});

it('should record its decendants as added', function() {
it('should record its descendants as added', function() {
var file = path.join(main, 'partials', '_one.scss');
var files = watcher.added(file);
assert.deepEqual(files.added, [
Expand Down Expand Up @@ -376,7 +376,7 @@ describe('watcher', function() {
]);
});

it('should not record its decendants as added', function() {
it('should not record its descendants as added', function() {
var file = path.join(main, 'partials', '_one.scss');
var files = watcher.added(file);
assert.deepEqual(files.added, [
Expand Down

0 comments on commit 96aa279

Please sign in to comment.