1. What Is a Diff Comparison?
A diff finds the differences between two texts (or files). It's used for code review, comparing document versions, checking config changes, and proofreading translations. Typically compared line by line, it distinguishes added, removed, and changed lines. Git's `git diff` and every code editor's compare feature rely on this same principle. This tool never sends your text to a server β everything is compared instantly in your browser, so even sensitive code or documents stay private.