Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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