Commit 9295225
authored
Dictionary (New Word): Diff (#187)
# Word
#### Diff
# Meaning/Definition
Diff (short for **difference**) is a term used in computing to describe
the comparison between two versions of a file, set of files, or data,
highlighting the changes made.
It is commonly used in version control systems like Git to show what has
been added, modified, or removed between revisions. Diffs help
developers quickly understand changes in codebases, making collaboration
and code review more efficient.
**Example**
```diff
- const name = "John";
+ const name = "Jane";
```
This diff shows that the value of the variable `name` was changed from
*John* to *Jane*.1 parent 1d12b51 commit 9295225
1 file changed
Lines changed: 16 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
0 commit comments