Skip to content

Commit

Permalink
docs: Minor typo fixes (#1606)
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR authored Dec 27, 2020
1 parent 2ae9b14 commit f5d6ac3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions History.md
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ Change log:
# 0.13.1 / 2014-01-07

- Fix select with context in Cheerio function (@jugglinmike)
- Remove unecessary DOM maintenance logic (@jugglinmike)
- Remove unnecessary DOM maintenance logic (@jugglinmike)
- Deprecate support for node 0.6

# 0.13.0 / 2013-12-30
Expand Down Expand Up @@ -524,7 +524,7 @@ Change log:

# 0.8.0 / 2012-05-27

- Updated CSS parser to use FB55/CSSselect. Cheerio now supports most CSS3 psuedo selectors thanks to @FB55.
- Updated CSS parser to use FB55/CSSselect. Cheerio now supports most CSS3 pseudo selectors thanks to @FB55.
- ignoreWhitespace now on by default again. See #55 for context.
- Changed $(':root') to $.root(), cleaned up \$.clone()
- Support for .eq(i) thanks to @alexbardas
Expand Down
2 changes: 1 addition & 1 deletion test/api/deprecated.js
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ describe('deprecated APIs', function () {
expect($.text()).to.equal('');
});

it('(cheerio object) : should include text contents of children omiting style and script tags', function () {
it('(cheerio object) : should include text contents of children omitting style and script tags', function () {
var $ = cheerio.load(
'<body>Welcome <div>Hello, testing text function,<script>console.log("hello")</script></div><style type="text/css">.cf-hidden { display: none; }</style>End of messege</body>'
);
Expand Down
2 changes: 1 addition & 1 deletion test/api/manipulation.js
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ describe('$(...)', function () {
expect($fruits.children().eq(0).hasClass('apple')).to.be.ok();
});

it('(Array) : should add all elements in the array as inital children', function () {
it('(Array) : should add all elements in the array as initial children', function () {
var more = $(
'<li class="plum">Plum</li><li class="grape">Grape</li>'
).get();
Expand Down
2 changes: 1 addition & 1 deletion test/api/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ describe('cheerio', function () {
expect($.text()).to.equal('');
});

it('(cheerio object) : should include text contents of children omiting style and script tags', function () {
it('(cheerio object) : should include text contents of children omitting style and script tags', function () {
var $ = cheerio.load(
'<body>Welcome <div>Hello, testing text function,<script>console.log("hello")</script></div><style type="text/css">.cf-hidden { display: none; }</style>End of messege</body>'
);
Expand Down

0 comments on commit f5d6ac3

Please sign in to comment.