summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-07-01 08:40:44 -0700
committerGitHub <noreply@github.com>2016-07-01 08:40:44 -0700
commit2396141a0df110a8e341927f66eb73d647db2a82 (patch)
treecb777927da8ab6a6ef6c4d1406ba8c9d4231b74c
parent6f73db950a6ab09a2598a3e2b6f55d2735ec457d (diff)
parentcffef57f98f5dc56ebba74c3fcf99801897a3f20 (diff)
Auto merge of #8 - servo:readme, r=emilio
Correct the README on the rustbindgen attribute.
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 47eda302..ae441537 100644
--- a/README.md
+++ b/README.md
@@ -108,11 +108,11 @@ Annotations
-----------
The translation of classes, structs, enums, and typedefs can be adjusted using annotations. Annotations are specifically formatted html tags inside doxygen style comments. The opaque annotation instructs bindgen to ignore all fields defined in a struct/class.
- /// <div rust-bindgen opaque></div>
+ /// <div rustbindgen opaque></div>
The hide annotation instructs bindgen to ignore the struct/class/field/enum completely.
- /// <div rust-bindgen hide></div>
+ /// <div rustbindgen hide></div>
Macro Usage
-----------