Skip to content

Commit 214cebf

Browse files
authored
Fix whitespace in minLength and maxLength attributes (#38)
1 parent 01f4603 commit 214cebf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/resources/concrete-cif-1.0.xsd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1381,7 +1381,7 @@
13811381

13821382
<xs:simpleType name="string-required">
13831383
<xs:restriction base="xs:string">
1384-
<xs:minLength value="1 " />
1384+
<xs:minLength value="1" />
13851385
<xs:pattern value=".*\S.*" />
13861386
</xs:restriction>
13871387
</xs:simpleType>
@@ -1392,13 +1392,13 @@
13921392
</xs:simpleType>
13931393
<xs:simpleType name="handle">
13941394
<xs:restriction base="xs:string">
1395-
<xs:maxLength value="255 " />
1395+
<xs:maxLength value="255" />
13961396
<xs:pattern value="[a-z]?([a-z0-9_]*[a-z0-9])?" />
13971397
</xs:restriction>
13981398
</xs:simpleType>
13991399
<xs:simpleType name="handle-with-minus">
14001400
<xs:restriction base="xs:string">
1401-
<xs:maxLength value="255 " />
1401+
<xs:maxLength value="255" />
14021402
<xs:pattern value="([a-z]?([a-z0-9_\-]*[a-z0-9])?)?" />
14031403
</xs:restriction>
14041404
</xs:simpleType>

0 commit comments

Comments
 (0)