This repository was archived by the owner on Nov 9, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -34,5 +34,5 @@ members = [
3434 " aktoro-context" ,
3535 " aktoro-runtime" ,
3636
37- " examples/hello_world" ,
37+ # "examples/hello_world", # See: https://github.com/rust-lang/rust/pull/61872
3838]
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ impl<A: Actor> Spawned<A> {
5959
6060 /// Tries send an action over the actor's
6161 /// control channel, returning a future resolving
62- /// with the result returned by the action
62+ /// with the result returned by the action
6363 /// handler.
6464 pub fn try_send_action < D > ( & mut self , action : D ) -> ControllerRes < A :: Output , ControllerError < A > >
6565 where
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ impl Error {
3838 }
3939
4040 pub ( crate ) fn add_err ( self , err : Error ) -> Error {
41- let mut error;
41+ let error;
4242 match ( self . kind , err. kind ) {
4343 ( ErrorKind :: Multiple ( mut errs) , ErrorKind :: Multiple ( mut errs_) ) => {
4444 errs. append ( & mut errs_) ;
Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ pub mod prelude {
1717 pub use aktoro_raw:: Runtime as RawRuntime ;
1818 pub use aktoro_raw:: Spawned ;
1919
20- pub use aktoro_raw:: Receiver as RawReceiver ;
21- pub use aktoro_raw:: Sender as RawSender ;
2220 pub use aktoro_raw:: Controlled as RawControlled ;
2321 pub use aktoro_raw:: Controller as RawController ;
22+ pub use aktoro_raw:: Receiver as RawReceiver ;
23+ pub use aktoro_raw:: Sender as RawSender ;
2424 pub use aktoro_raw:: Updated as RawUpdated ;
2525 pub use aktoro_raw:: Updater as RawUpdater ;
2626
You can’t perform that action at this time.
0 commit comments