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