Skip to content

Commit 8e7ab2e

Browse files
committed
2 parents e4544d1 + b74c574 commit 8e7ab2e

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ If you're using Maven, add this to your pom file:
8484
<dependency>
8585
<groupId>com.approvaltests</groupId>
8686
<artifactId>approvaltests</artifactId>
87-
<version>24.21.0</version>
87+
<version>24.21.1</version>
8888
<scope>test</scope>
8989
</dependency>
9090
```
@@ -93,7 +93,7 @@ If you're using Maven, add this to your pom file:
9393

9494
```gradle
9595
dependencies {
96-
testImplementation("com.approvaltests:approvaltests:24.21.0")
96+
testImplementation("com.approvaltests:approvaltests:24.21.1")
9797
}
9898
```
9999

approvaltests-util/docs/StringUtils.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ For example
2323
List<Integer> number = Arrays.asList(1, 2, 3, 4, 5);
2424
String text = StringUtils.join(number, ", ");
2525
```
26-
<sup><a href='/approvaltests-util-tests/src/test/java/com/spun/util/StringUtilsTest.java#L65-L68' title='Snippet source file'>snippet source</a> | <a href='#snippet-join_collection' title='Start of snippet'>anchor</a></sup>
26+
<sup><a href='/approvaltests-util-tests/src/test/java/com/spun/util/StringUtilsTest.java#L66-L69' title='Snippet source file'>snippet source</a> | <a href='#snippet-join_collection' title='Start of snippet'>anchor</a></sup>
2727
<!-- endSnippet -->
2828
will produce
2929
<!-- snippet: /approvaltests-util-tests/src/test/java/com/spun/util/StringUtilsTest.testJoinCollection.approved.txt -->
@@ -44,7 +44,7 @@ For example:
4444
List<Integer> number = Arrays.asList(1, 2, 3, 4, 5);
4545
String text = StringUtils.join(number, ", ", n -> StringUtils.padNumber(n, 3));
4646
```
47-
<sup><a href='/approvaltests-util-tests/src/test/java/com/spun/util/StringUtilsTest.java#L74-L77' title='Snippet source file'>snippet source</a> | <a href='#snippet-join_collection_with_lambda' title='Start of snippet'>anchor</a></sup>
47+
<sup><a href='/approvaltests-util-tests/src/test/java/com/spun/util/StringUtilsTest.java#L75-L78' title='Snippet source file'>snippet source</a> | <a href='#snippet-join_collection_with_lambda' title='Start of snippet'>anchor</a></sup>
4848
<!-- endSnippet -->
4949
will Produce
5050
<!-- snippet: /approvaltests-util-tests/src/test/java/com/spun/util/StringUtilsTest.testJoinCollectionWithFunction.approved.txt -->

0 commit comments

Comments
 (0)