Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Diff documentation #237

Merged
merged 3 commits into from Nov 12, 2020
Merged

Fix Diff documentation #237

merged 3 commits into from Nov 12, 2020

Commits on Oct 15, 2020

  1. Fix Diff documentation

    The description inaccurately describes the operation of Diff,
    which is y - x, where a '+' prefix denotes elements added from y
    and a '-' prefix denotes elements removed from x.
    
    For example:
    	// Consider this call to Diff and its result.
    	                  x  y
    	cmp.Diff({b:2, c:3}, {a:1, b:2}) => {+a:1, b:2, -c:3}
    
    	// Consider the same in mathematical notation.
    	         y - x
    	{a:1, b:2} - {b:2, c:3} = {+a:1, b:2, -c:3}
    dsnet committed Oct 15, 2020
    Copy the full SHA
    b72042d View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2020

  1. Merge branch 'master' into doc

    dsnet committed Oct 25, 2020
    Copy the full SHA
    c2cbac1 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2020

  1. Merge branch 'master' into doc

    dsnet committed Nov 12, 2020
    Copy the full SHA
    864ba1f View commit details
    Browse the repository at this point in the history