Skip to content

Commit a5dbb97

Browse files
authored
Merge pull request #3853 from naskya/remove-rust-ci.org
update a broken/malicious documentation link to point to docs.rs
2 parents b6d0de3 + 39819ea commit a5dbb97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

text/0390-enum-namespacing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ pub trait MyTrait { ... }
161161
This strategy does not work for flat enums in general. It is not all that
162162
uncommon for an enum to have *many* variants - for example, take
163163
[`rust-postgres`'s `SqlState`
164-
enum](http://www.rust-ci.org/sfackler/rust-postgres/doc/postgres/error/enum.PostgresSqlState.html),
164+
enum](https://docs.rs/postgres/0.8.9/postgres/enum.SqlState.html),
165165
which contains 232 variants. It would be ridiculous to `pub use` all of them!
166166
With namespaced enums, this kind of reexport becomes a simple `pub use` of the
167167
enum itself.

0 commit comments

Comments
 (0)