Check spec links version for v1.1

This commit is contained in:
Guillaume 2021-12-29 00:28:05 +01:00 committed by Jonas Platte
parent 08df981b3b
commit 9ee0436eb8

View File

@ -25,6 +25,7 @@ const SPLITS: &[(&str, VersionFn)] = &[
("https://matrix.org/docs/spec/push_gateway/", |s| {
s.starts_with("r0.1.1") || s.starts_with("unstable#")
}),
("https://spec.matrix.org/", |s| s.starts_with("v1.1") || s.starts_with("unstable")),
];
pub(crate) fn check_spec_links(path: &Path) -> Result<()> {