Skip to content

Commit 8ab5c59

Browse files
authored
Merge pull request rust-lang#46 from shepmaster/patch-1
Add missing backtick
2 parents c2159d1 + 1605407 commit 8ab5c59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/executor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use std::sync::Arc;
99
/// Encapsulation of a value which has the ability to execute arbitrary code.
1010
///
1111
/// This trait is object safe and intended to be used through pointers like
12-
/// `Box` and `Arc.
12+
/// `Box` and `Arc`.
1313
pub trait Executor: Send + Sync + 'static {
1414
/// Executes the given closure `f`, perhaps on a different thread or
1515
/// deferred to a later time.

0 commit comments

Comments
 (0)