Skip to content

Commit ca50164

Browse files
authored
Merge pull request #15 from jyn514/doc-links
Fix broken documentation links
2 parents b3a0748 + bb3c793 commit ca50164

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cmd/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ impl<'w, 'pl> Command<'w, 'pl> {
257257
/// Enable or disable logging all the output lines to the [`log` crate][log]. By default
258258
/// logging is enabled.
259259
///
260-
/// [log]: (https://crates.io/crates/log)
260+
/// [log]: https://crates.io/crates/log
261261
pub fn log_output(mut self, log_output: bool) -> Self {
262262
self.log_output = log_output;
263263
self
@@ -266,7 +266,7 @@ impl<'w, 'pl> Command<'w, 'pl> {
266266
/// Enable or disable logging the command name and args to the [`log` crate][log] before the
267267
/// exectuion. By default logging is enabled.
268268
///
269-
/// [log]: (https://crates.io/crates/log)
269+
/// [log]: https://crates.io/crates/log
270270
pub fn log_command(mut self, log_command: bool) -> Self {
271271
self.log_command = log_command;
272272
self

0 commit comments

Comments
 (0)