sync titles
authorRalf Jung <post@ralfj.de>
Fri, 10 Jul 2015 16:58:18 +0000 (18:58 +0200)
committerRalf Jung <post@ralfj.de>
Fri, 10 Jul 2015 16:58:18 +0000 (18:58 +0200)
src/part11.rs
workspace/src/part11.rs

index 5219d30b2e0e9de85bc13e060b49fd78ed34e00a..4e5c5fd7b343151e28ef54f3bb59e71ac52da6c6 100644 (file)
@@ -1,5 +1,5 @@
-// Rust-101, Part 11: Trait Objects, Box, Rc
-// =========================================
+// Rust-101, Part 11: Trait Objects, Box, Rc, Lifetime bounds
+// ==========================================================
 
 //@ We will play around with closures a bit more. Let us implement some kind of generic "callback"
 //@ mechanism, providing two functions: Registering a new callback, and calling all registered callbacks. There will be two
index 01f170b40ce7b34d41a2c39c11e6d32ca40e6f07..7e45540ca74e98229462d35ae07c71ea2b73e516 100644 (file)
@@ -1,5 +1,5 @@
-// Rust-101, Part 11: Trait Objects, Box, Rc
-// =========================================
+// Rust-101, Part 11: Trait Objects, Box, Rc, Lifetime bounds
+// ==========================================================
 
 mod callbacks {
     // For now, we just decide that the callbacks have an argument of type `i32`.