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

Commit

Permalink
Removed the examples until rust-lang/rust#61872 is fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
r3v2d0g committed Jun 22, 2019
1 parent e4b2dbe commit a503a0d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ members = [
"aktoro-context",
"aktoro-runtime",

"examples/hello_world",
# "examples/hello_world", # See: https://github.com/rust-lang/rust/pull/61872
]
2 changes: 1 addition & 1 deletion aktoro-raw/src/spawned.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ impl<A: Actor> Spawned<A> {

/// Tries send an action over the actor's
/// control channel, returning a future resolving
/// with the result returned by the action
/// with the result returned by the action
/// handler.
pub fn try_send_action<D>(&mut self, action: D) -> ControllerRes<A::Output, ControllerError<A>>
where
Expand Down
2 changes: 1 addition & 1 deletion aktoro-runtime/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ impl Error {
}

pub(crate) fn add_err(self, err: Error) -> Error {
let mut error;
let error;
match (self.kind, err.kind) {
(ErrorKind::Multiple(mut errs), ErrorKind::Multiple(mut errs_)) => {
errs.append(&mut errs_);
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ pub mod prelude {
pub use aktoro_raw::Runtime as RawRuntime;
pub use aktoro_raw::Spawned;

pub use aktoro_raw::Receiver as RawReceiver;
pub use aktoro_raw::Sender as RawSender;
pub use aktoro_raw::Controlled as RawControlled;
pub use aktoro_raw::Controller as RawController;
pub use aktoro_raw::Receiver as RawReceiver;
pub use aktoro_raw::Sender as RawSender;
pub use aktoro_raw::Updated as RawUpdated;
pub use aktoro_raw::Updater as RawUpdater;

Expand Down

0 comments on commit a503a0d

Please sign in to comment.