Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Assorted typo fixes. #2726

Merged
merged 1 commit into from
Aug 30, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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