Skip to content

Commit e13e783

Browse files
authored
docs(client): fix HTTP/2 max concurrent stream link to spec (#4037)
1 parent 8ba9008 commit e13e783

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/conn/http2.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ where
387387
///
388388
/// See [Section 5.1.2] in the HTTP/2 spec for more details.
389389
///
390-
/// [Section 5.1.2]: https://http2.github.io/http2-spec/#rfc.section.5.1.2
390+
/// [Section 5.1.2]: https://httpwg.org/specs/rfc7540.html#rfc.section.5.1.2
391391
pub fn max_concurrent_streams(&mut self, max: impl Into<Option<u32>>) -> &mut Self {
392392
self.h2_builder.max_concurrent_streams = max.into();
393393
self

0 commit comments

Comments
 (0)