Skip to content

Commit 25469f7

Browse files
authored
Merge branch 'develop' into fix/cluster-tests
2 parents 7e1e2b1 + 6e25389 commit 25469f7

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/chain/committeelog/var_localview_rapid_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ package committeelog_test
2323
// "github.com/iotaledger/wasp/v2/packages/testutil/testlogger"
2424
// )
2525

26-
// // A State Machine for for the property based test.
26+
// // A State Machine for the property based test.
2727
// // It models the chain (confirmed, pending, rejected, rejSync fields)
2828
// // and contains the actual instance to test (lv).
2929
// type varLocalViewSM struct {

packages/util/generics.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ type Cloneable[T any] interface {
44
Clone() T
55
}
66

7-
// CloneSlice clones every element in the the slice into cloned and returns the cloned slice.
7+
// CloneSlice clones every element in the slice into cloned and returns the cloned slice.
88
func CloneSlice[T Cloneable[T]](base []T) []T {
99
cloned := make([]T, len(base))
1010

@@ -15,7 +15,7 @@ func CloneSlice[T Cloneable[T]](base []T) []T {
1515
return cloned
1616
}
1717

18-
// CloneMap clones every element in the the map into cloned and returns the cloned map.
18+
// CloneMap clones every element in the map into cloned and returns the cloned map.
1919
func CloneMap[K comparable, T Cloneable[T]](base map[K]T) map[K]T {
2020
cloned := make(map[K]T, len(base))
2121

0 commit comments

Comments
 (0)