Skip to content

Commit 7f493be

Browse files
authored
Remove nightly feature from removal example.
1 parent 6740cc9 commit 7f493be

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

examples/removal.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![feature(inclusive_range_syntax)]
21
extern crate rudy;
32
use rudy::rudymap::RudyMap;
43

@@ -19,7 +18,7 @@ fn main() {
1918
for i in low..high {
2019
assert_eq!(map.get(i), None);
2120
}
22-
for i in 5...7 {
21+
for i in 5..7 {
2322
println!("{} => {:?}", i, map.get(i));
2423
}
2524
println!("{}", map.len());

0 commit comments

Comments
 (0)