about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRichard Cobbe <ricobbe@microsoft.com>2021-07-20 14:04:38 -0700
committerRichard Cobbe <ricobbe@microsoft.com>2021-07-20 14:04:38 -0700
commit8e84e4d8e1af2e87e37156b28020e110714e1a29 (patch)
tree8e04ff1ec21a06e91b620a70dc8f89794d0dd0d0
parent3061b9bda8ac136396d5f938ed05e0d25a16e0f0 (diff)
downloadrust-8e84e4d8e1af2e87e37156b28020e110714e1a29.tar.gz
rust-8e84e4d8e1af2e87e37156b28020e110714e1a29.zip
Fix ignore annotation
-rw-r--r--src/doc/unstable-book/src/language-features/raw-dylib.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/doc/unstable-book/src/language-features/raw-dylib.md b/src/doc/unstable-book/src/language-features/raw-dylib.md
index 01cbe2e786f..23fc5b3052d 100644
--- a/src/doc/unstable-book/src/language-features/raw-dylib.md
+++ b/src/doc/unstable-book/src/language-features/raw-dylib.md
@@ -9,8 +9,7 @@ The tracking issue for this feature is: [#58713]
 The `raw_dylib` feature allows you to link against the implementations of functions in an `extern`
 block without, on Windows, linking against an import library.
 
-<!-- NOTE(ignore) this example is specific to the windows targets and requires an external library -->
-```rust,ignore
+```rust,ignore (partial-example)
 #![feature(raw_dylib)]
 
 #[link(name="library", kind="raw-dylib")]