Skip to content

Commit

Permalink
Fix assorted trivial capitalisation typos (#410)
Browse files Browse the repository at this point in the history
  • Loading branch information
ExplodingCabbage authored Dec 14, 2023
1 parent 3b654c2 commit 3652181
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Build Status](https://secure.travis-ci.org/kpdecker/jsdiff.svg)](http://travis-ci.org/kpdecker/jsdiff)
[![Sauce Test Status](https://saucelabs.com/buildstatus/jsdiff)](https://saucelabs.com/u/jsdiff)

A javascript text differencing implementation.
A JavaScript text differencing implementation.

Based on the algorithm proposed in
["An O(ND) Difference Algorithm and its Variations" (Myers, 1986)](http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.4.6927).
Expand Down
2 changes: 1 addition & 1 deletion components/component.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jsdiff",
"repo": "kpdecker/jsdiff",
"description": "A javascript text diff implementation.",
"description": "A JavaScript text diff implementation.",
"keywords": [
"diff",
"text"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "diff",
"version": "5.0.0",
"description": "A javascript text diff implementation.",
"description": "A JavaScript text diff implementation.",
"keywords": [
"diff",
"jsdiff",
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* Text diff implementation.
*
* This library supports the following APIS:
* This library supports the following APIs:
* JsDiff.diffChars: Character by character diff
* JsDiff.diffWords: Word (as defined by \b regex) diff which ignores whitespace
* JsDiff.diffLines: Line based diff
Expand Down

0 comments on commit 3652181

Please sign in to comment.