Skip to content

Commit bb3a9b7

Browse files
lazyrainynightdennisdoomen
authored andcommitted
Add missing semicolon
1 parent 35c19ab commit bb3a9b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/_pages/collections.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ collection.Should().Contain(collection, "", 5, 6); // It should contain the orig
5353
5454
collection.Should().OnlyContain(x => x < 10);
5555
collection.Should().ContainItemsAssignableTo<int>();
56-
collection.Should().NotContainItemsAssignableTo<string>()
56+
collection.Should().NotContainItemsAssignableTo<string>();
5757

5858
collection.Should().ContainInOrder(new[] { 1, 5, 8 });
5959
collection.Should().NotContainInOrder(new[] { 5, 1, 2 });

0 commit comments

Comments
 (0)