Skip to content
This repository was archived by the owner on Nov 9, 2019. It is now read-only.

Commit a503a0d

Browse files
committed
Removed the examples until rust-lang/rust#61872 is fixed.
1 parent e4b2dbe commit a503a0d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
]

aktoro-raw/src/spawned.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

aktoro-runtime/src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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_);

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)