Skip to content

Commit bccb4ba

Browse files
committed
replaces dash with en-dash in union–find
1 parent 132ad18 commit bccb4ba

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/main/java/edu/princeton/cs/algs4/QuickFindUF.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* along with a <em>count</em> operation that returns the total number
2020
* of sets.
2121
* <p>
22-
* The union-find data type models a collection of sets containing
22+
* The unionfind data type models a collection of sets containing
2323
* <em>n</em> elements, with each element in exactly one set.
2424
* The elements are named 0 through <em>n</em>–1.
2525
* Initially, there are <em>n</em> sets, with each element in its

src/main/java/edu/princeton/cs/algs4/QuickUnionUF.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* along with a <em>count</em> operation that returns the total number
2020
* of sets.
2121
* <p>
22-
* The union-find data type models a collection of sets containing
22+
* The unionfind data type models a collection of sets containing
2323
* <em>n</em> elements, with each element in exactly one set.
2424
* The elements are named 0 through <em>n</em>–1.
2525
* Initially, there are <em>n</em> sets, with each element in its

src/main/java/edu/princeton/cs/algs4/UF.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* along with a <em>count</em> operation that returns the total number
3232
* of sets.
3333
* <p>
34-
* The union-find data type models a collection of sets containing
34+
* The unionfind data type models a collection of sets containing
3535
* <em>n</em> elements, with each element in exactly one set.
3636
* The elements are named 0 through <em>n</em>–1.
3737
* Initially, there are <em>n</em> sets, with each element in its

src/main/java/edu/princeton/cs/algs4/WeightedQuickUnionUF.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* along with a <em>count</em> operation that returns the total number
2020
* of sets.
2121
* <p>
22-
* The union-find data type models a collection of sets containing
22+
* The unionfind data type models a collection of sets containing
2323
* <em>n</em> elements, with each element in exactly one set.
2424
* The elements are named 0 through <em>n</em>–1.
2525
* Initially, there are <em>n</em> sets, with each element in its

0 commit comments

Comments
 (0)