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

Commit 8421979

Browse files
committedAug 30, 2019
Assorted typo fixes.
1 parent 2513e6a commit 8421979

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# node-sass
22

3-
#### 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:
3+
#### 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:
44

55
NodeJS | Minimum node-sass version | Node Module
66
--------|--------------------------|------------

‎lib/extensions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ function getBinaryName() {
214214
* By default fetch from the node-sass distribution
215215
* site on GitHub.
216216
*
217-
* The default URL can be overriden using
217+
* The default URL can be overridden using
218218
* the environment variable SASS_BINARY_SITE,
219219
* .npmrc variable sass_binary_site or
220220
* or a command line option --sass-binary-site:

‎test/watcher.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ describe('watcher', function() {
3535
]);
3636
});
3737

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

62-
it('should record its decendants as added', function() {
62+
it('should record its descendants as added', function() {
6363
var file = path.join(main, 'one.scss');
6464
var files = watcher.changed(file);
6565
assert.deepEqual(files.added, [
@@ -112,7 +112,7 @@ describe('watcher', function() {
112112
assert.deepEqual(files.added, []);
113113
});
114114

115-
it('should record its decendants as added', function() {
115+
it('should record its descendants as added', function() {
116116
var file = path.join(main, 'partials', '_one.scss');
117117
var files = watcher.added(file);
118118
assert.deepEqual(files.added, [
@@ -140,7 +140,7 @@ describe('watcher', function() {
140140
assert.deepEqual(files.added, []);
141141
});
142142

143-
it('should record its decendants as added', function() {
143+
it('should record its descendants as added', function() {
144144
var file = path.join(main, 'one.scss');
145145
var files = watcher.added(file);
146146
assert.deepEqual(files.added, [
@@ -248,7 +248,7 @@ describe('watcher', function() {
248248
describe('when a file is changed', function() {
249249
describe('and it is in the graph', function() {
250250
describe('if it is a partial', function() {
251-
it('should record its decendents as added', function() {
251+
it('should record its descendants as added', function() {
252252
var file = path.join(main, 'partials', '_one.scss');
253253
var files = watcher.changed(file);
254254
assert.deepEqual(files.added, [
@@ -272,7 +272,7 @@ describe('watcher', function() {
272272
});
273273

274274
describe('if it is not a partial', function() {
275-
it('should record its decendents as added', function() {
275+
it('should record its descendants as added', function() {
276276
var file = path.join(main, 'one.scss');
277277
var files = watcher.changed(file);
278278
assert.deepEqual(files.added, [
@@ -338,7 +338,7 @@ describe('watcher', function() {
338338
assert.deepEqual(files.added, []);
339339
});
340340

341-
it('should record its decendants as added', function() {
341+
it('should record its descendants as added', function() {
342342
var file = path.join(main, 'partials', '_one.scss');
343343
var files = watcher.added(file);
344344
assert.deepEqual(files.added, [
@@ -376,7 +376,7 @@ describe('watcher', function() {
376376
]);
377377
});
378378

379-
it('should not record its decendants as added', function() {
379+
it('should not record its descendants as added', function() {
380380
var file = path.join(main, 'partials', '_one.scss');
381381
var files = watcher.added(file);
382382
assert.deepEqual(files.added, [

0 commit comments

Comments
 (0)
This repository has been archived.