Unverified Commit 96aa2793 by Michael Mifsud Committed by GitHub

Merge pull request #2726 from XhmikosR/master-xmr-typos

Assorted typo fixes.
parents 2513e6aa 8421979f
# node-sass # 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 NodeJS | Minimum node-sass version | Node Module
--------|--------------------------|------------ --------|--------------------------|------------
......
...@@ -214,7 +214,7 @@ function getBinaryName() { ...@@ -214,7 +214,7 @@ function getBinaryName() {
* By default fetch from the node-sass distribution * By default fetch from the node-sass distribution
* site on GitHub. * site on GitHub.
* *
* The default URL can be overriden using * The default URL can be overridden using
* the environment variable SASS_BINARY_SITE, * the environment variable SASS_BINARY_SITE,
* .npmrc variable sass_binary_site or * .npmrc variable sass_binary_site or
* or a command line option --sass-binary-site: * or a command line option --sass-binary-site:
......
...@@ -35,7 +35,7 @@ describe('watcher', function() { ...@@ -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 file = path.join(main, 'partials', '_one.scss');
var files = watcher.changed(file); var files = watcher.changed(file);
assert.deepEqual(files.added, [ assert.deepEqual(files.added, [
...@@ -59,7 +59,7 @@ describe('watcher', function() { ...@@ -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 file = path.join(main, 'one.scss');
var files = watcher.changed(file); var files = watcher.changed(file);
assert.deepEqual(files.added, [ assert.deepEqual(files.added, [
...@@ -112,7 +112,7 @@ describe('watcher', function() { ...@@ -112,7 +112,7 @@ describe('watcher', function() {
assert.deepEqual(files.added, []); 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 file = path.join(main, 'partials', '_one.scss');
var files = watcher.added(file); var files = watcher.added(file);
assert.deepEqual(files.added, [ assert.deepEqual(files.added, [
...@@ -140,7 +140,7 @@ describe('watcher', function() { ...@@ -140,7 +140,7 @@ describe('watcher', function() {
assert.deepEqual(files.added, []); 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 file = path.join(main, 'one.scss');
var files = watcher.added(file); var files = watcher.added(file);
assert.deepEqual(files.added, [ assert.deepEqual(files.added, [
...@@ -248,7 +248,7 @@ describe('watcher', function() { ...@@ -248,7 +248,7 @@ describe('watcher', function() {
describe('when a file is changed', function() { describe('when a file is changed', function() {
describe('and it is in the graph', function() { describe('and it is in the graph', function() {
describe('if it is a partial', 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 file = path.join(main, 'partials', '_one.scss');
var files = watcher.changed(file); var files = watcher.changed(file);
assert.deepEqual(files.added, [ assert.deepEqual(files.added, [
...@@ -272,7 +272,7 @@ describe('watcher', function() { ...@@ -272,7 +272,7 @@ describe('watcher', function() {
}); });
describe('if it is not a partial', 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 file = path.join(main, 'one.scss');
var files = watcher.changed(file); var files = watcher.changed(file);
assert.deepEqual(files.added, [ assert.deepEqual(files.added, [
...@@ -338,7 +338,7 @@ describe('watcher', function() { ...@@ -338,7 +338,7 @@ describe('watcher', function() {
assert.deepEqual(files.added, []); 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 file = path.join(main, 'partials', '_one.scss');
var files = watcher.added(file); var files = watcher.added(file);
assert.deepEqual(files.added, [ assert.deepEqual(files.added, [
...@@ -376,7 +376,7 @@ describe('watcher', function() { ...@@ -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 file = path.join(main, 'partials', '_one.scss');
var files = watcher.added(file); var files = watcher.added(file);
assert.deepEqual(files.added, [ assert.deepEqual(files.added, [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment