missed closing tag bracket

This commit is contained in:
brent s. 2022-03-05 00:59:42 -05:00
parent ea935b642f
commit 0caed70ec2
Signed by: bts
GPG Key ID: 8C004C2F93481F6B

View File

@ -3,52 +3,52 @@
elementFormDefault="qualified" elementFormDefault="qualified"
attributeFormDefault="unqualified"> attributeFormDefault="unqualified">


<xs:include schemaLocation="./linux.xsd"/> <xs:include schemaLocation="./unix.xsd"/>
<xs:include schemaLocation="./windows.xsd"/> <xs:include schemaLocation="./windows.xsd"/>


<!-- ABSOLUTE directory path --> <!-- ABSOLUTE directory path -->
<xs:simpleType name="t_xplat_dirpath"> <xs:simpleType name="t_xplat_dirpath">
<xs:union memberTypes="t_linux_dirpath t_windows_dirpath"/> <xs:union memberTypes="t_unix_dirpath t_windows_dirpath"/>
</xs:simpleType> </xs:simpleType>


<!-- RELATIVE directory path --> <!-- RELATIVE directory path -->
<xs:simpleType name="t_xplat_reldirpath"> <xs:simpleType name="t_xplat_reldirpath">
<xs:union memberTypes="t_linux_reldirpath t_windows_reldirpath"/> <xs:union memberTypes="t_unix_reldirpath t_windows_reldirpath"/>
</xs:simpleType> </xs:simpleType>


<!-- ABSOLUTE file path --> <!-- ABSOLUTE file path -->
<xs:simpleType name="t_xplat_filepath"> <xs:simpleType name="t_xplat_filepath">
<xs:union memberTypes="t_linux_filepath t_windows_filepath"/> <xs:union memberTypes="t_unix_filepath t_windows_filepath"/>
</xs:simpleType> </xs:simpleType>


<!-- RELATIVE file path --> <!-- RELATIVE file path -->
<xs:simpleType name="t_xplat_relfilepath"> <xs:simpleType name="t_xplat_relfilepath">
<xs:union memberTypes="t_linux_relfilepath t_windows_relfilepath"/> <xs:union memberTypes="t_unix_relfilepath t_windows_relfilepath"/>
</xs:simpleType> </xs:simpleType>


<!-- ABSOLUTE path (file or directory) --> <!-- ABSOLUTE path (file or directory) -->
<xs:simpleType name="t_xplat_path"> <xs:simpleType name="t_xplat_path">
<xs:union memberTypes="t_linux_path t_windows_path"/> <xs:union memberTypes="t_unix_path t_windows_path"/>
</xs:simpleType> </xs:simpleType>


<!-- RELATIVE path (file or directory) --> <!-- RELATIVE path (file or directory) -->
<xs:simpleType name="t_xplat_relpath"> <xs:simpleType name="t_xplat_relpath">
<xs:union memberTypes="t_linux_relpath t_windows_relpath"/> <xs:union memberTypes="t_unix_relpath t_windows_relpath"/>
</xs:simpleType> </xs:simpleType>


<!-- ANY valid value for the above types. --> <!-- ANY valid value for the above types. -->
<xs:simpleType name="t_xplat_anypath"> <xs:simpleType name="t_xplat_anypath">
<xs:union memberTypes="t_linux_anypath t_windows_anypath"/> <xs:union memberTypes="t_unix_anypath t_windows_anypath"/>
</xs:simpleType> </xs:simpleType>


<!-- RELATIVE or ABSOLUTE file path --> <!-- RELATIVE or ABSOLUTE file path -->
<xs:simpleType name="t_xplat_anyfile"> <xs:simpleType name="t_xplat_anyfile">
<xs:union memberTypes="t_linux_anyfile t_windows_anyfile"/> <xs:union memberTypes="t_unix_anyfile t_windows_anyfile"/>
</xs:simpleType> </xs:simpleType>


<!-- RELATIVE or ABSOLUTE dir path --> <!-- RELATIVE or ABSOLUTE dir path -->
<xs:simpleType name="t_xplat_anydir"> <xs:simpleType name="t_xplat_anydir">
<xs:union memberTypes="t_linux_anydir t_windows_anydir"/> <xs:union memberTypes="t_unix_anydir t_windows_anydir"/>
</xs:simpleType> </xs:simpleType>


</xs:schema </xs:schema>