Skip to content

Commit 77a9bd1

Browse files
authored
Merge pull request #16 from JarrodCTaylor/typo-fixes
Typo fixes
2 parents e624bd3 + 2dbf789 commit 77a9bd1

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@
66

77
## Changed
88

9+
# 2.0.0-73 (2020-03-31 / 21c86413)
10+
11+
## Fixed
12+
13+
- Typos in deep_diff2.cljs resulting from naming changes
14+
915
# 2.0.0-72 (2020-03-27 / 2862182)
1016

1117
## Added

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ If you find value in our work please consider [becoming a backer on Open Collect
1919
deps.edn
2020

2121
```
22-
lambdaisland/deep-diff2 {:mvn/version "2.0.0-72"}
22+
lambdaisland/deep-diff2 {:mvn/version "2.0.0-73"}
2323
```
2424

2525
project.clj
2626

2727
```
28-
[lambdaisland/deep-diff2 "2.0.0-72"]
28+
[lambdaisland/deep-diff2 "2.0.0-73"]
2929
```
3030

3131
## Use

src/lambdaisland/deep_diff2.cljc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
Insertions/Deletions in maps are marked by wrapping the key, even though the
1818
change applies to the whole map entry."
1919
[expected actual]
20-
(diff/diff expected actual))
20+
(diff-impl/diff expected actual))
2121

2222
(defn printer
2323
"Construct a Puget printer instance suitable for printing diffs.
@@ -36,7 +36,7 @@
3636
Pretty print a diffed data structure, as obtained from [[diff]]. Optionally
3737
takes a Puget printer instance, see [[printer]]."
3838
([diff]
39-
(pretty-print diff (build-printer)))
39+
(pretty-print diff (printer)))
4040
([diff printer]
4141
(-> diff
4242
(printer-impl/format-doc printer)

0 commit comments

Comments
 (0)