Skip to content

Commit 3637127

Browse files
committed
Fix up a comment
1 parent ee5dee7 commit 3637127

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/job_token.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ pub(crate) struct JobTokenServer {
3939
impl JobTokenServer {
4040
pub(crate) fn new(client: Client) -> Result<Self, crate::Error> {
4141
let (tx, rx) = mpsc::channel();
42-
// Initialize the
42+
// Push the implicit token. Since JobTokens only give back what they got,
43+
// there should be at most one global implicit token in the wild.
4344
tx.send(None).unwrap();
4445
let pool = tx.clone();
4546
let helper = client.into_helper_thread(move |acq| {

0 commit comments

Comments
 (0)