Skip to content

Commit 85ca934

Browse files
committed
auto merge of #9457 : klutzy/rust/doc-fix, r=alexcrichton
2 parents c7e6726 + 426ad12 commit 85ca934

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/local_data.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ modify/read the slot specified by the key.
2525
~~~{.rust}
2626
use std::local_data;
2727
28-
local_data_key!(key_int: int);
29-
local_data_key!(key_vector: ~[int]);
28+
local_data_key!(key_int: int)
29+
local_data_key!(key_vector: ~[int])
3030
3131
local_data::set(key_int, 3);
3232
local_data::get(key_int, |opt| assert_eq!(opt, Some(&3)));

0 commit comments

Comments
 (0)