Skip to content

Commit 693bbda

Browse files
authored
한글화
1 parent 533f78c commit 693bbda

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/effectivejava/chapter7/item45/Card.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import java.util.stream.Stream;
66
import static java.util.stream.Collectors.*;
77

8-
// 반복 방식과 스트림 방식으로 두 리스트의 데카르트 곱을 생성한다. (275쪽)
8+
// 반복 방식과 스트림 방식으로 두 리스트의 데카르트 곱을 생성한다. (275-276쪽)
99
public class Card {
1010
public enum Suit { SPADE, HEART, DIAMOND, CLUB }
1111
public enum Rank { ACE, DEUCE, THREE, FOUR, FIVE, SIX, SEVEN,
@@ -34,7 +34,7 @@ private static List<Card> newDeck() {
3434
return result;
3535
}
3636

37-
// // 데카르트 곱 계산을 스트림 방식으로 구현
37+
// // 코드 45-5 데카르트 곱 계산을 스트림 방식으로 구현 (276쪽)
3838
// private static List<Card> newDeck() {
3939
// return Stream.of(Suit.values())
4040
// .flatMap(suit ->

0 commit comments

Comments
 (0)