From 1af9444a169b3bafd8b1949e7d835004de655738 Mon Sep 17 00:00:00 2001 From: Yoonjae Jeon Date: Sat, 14 Jan 2023 23:37:33 +0900 Subject: [PATCH] fix: Add a missing space in `MaxLength` description (#101) --- main/src/io/github/iltotore/iron/constraint/collection.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/src/io/github/iltotore/iron/constraint/collection.scala b/main/src/io/github/iltotore/iron/constraint/collection.scala index 07dc20e4..ad7e7be5 100644 --- a/main/src/io/github/iltotore/iron/constraint/collection.scala +++ b/main/src/io/github/iltotore/iron/constraint/collection.scala @@ -34,7 +34,7 @@ object collection: * * @tparam V the maximum length of the tested input */ - type MaxLength[V <: Int] = Length[LessEqual[V]] DescribedAs "Should have a maximum length of" + V + type MaxLength[V <: Int] = Length[LessEqual[V]] DescribedAs "Should have a maximum length of " + V /** * Tests if the input is empty.