Fix missing closing quotes in Local dependencies #298 (#299)

Fix missing closing quotes in 'Local Dependencies' section of index.adoc to ensure syntax correctness.
This commit is contained in:
d4wae89d498
2024-03-07 19:42:10 +01:00
committed by Dan Chao
parent 8209ea78bd
commit 0829ac486c

View File

@@ -5237,7 +5237,7 @@ package {
name = "birds"
baseUri = "package://example.com/birds"
version = "1.8.3"
packageZipUrl = "https://example.com/birds@\(version).zip
packageZipUrl = "https://example.com/birds@\(version).zip"
}
----
<1> Specify relative project `../fruit` as a dependency.
@@ -5251,7 +5251,7 @@ package {
name = "fruit"
baseUri = "package://example.com/fruit"
version = "1.5.0"
packageZipUrl = "https://example.com/fruit@\(version).zip
packageZipUrl = "https://example.com/fruit@\(version).zip"
}
----