summaryrefslogtreecommitdiffstats
path: root/src/recite
diff options
context:
space:
mode:
Diffstat (limited to 'src/recite')
-rw-r--r--src/recite/ps.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/recite/ps.rs b/src/recite/ps.rs
index 431466e..d0e2435 100644
--- a/src/recite/ps.rs
+++ b/src/recite/ps.rs
@@ -1,7 +1,7 @@
#[macro_export]
-/// Fork into a process from a [Verse]
+/// Fork into a process from a Verse
///
-/// Figures out whether or not the given [Verse] is a couplet. If it is, fork
+/// Figures out whether or not the given Verse is a couplet. If it is, fork
/// into a process, and pipe the contents of out `out` into STDIN. If not, then
/// simply fork into the process.
///
@@ -27,12 +27,12 @@ macro_rules! task {
};
}
-/// Fork into a process from a [Verse], and capture STDOUT
+/// Fork into a process from a Verse, and capture STDOUT
///
-/// Figures out whether or not the given [Verse] is a couplet. If it is, fork
+/// Figures out whether or not the given Verse is a couplet. If it is, fork
/// into a process, and pipe the contents of out `out` into STDIN. If not, then
/// simply fork into the process. Additionally, this function will capture
-/// STDOUT of the process specified by the [Verse], and store it in `out`.
+/// STDOUT of the process specified by the Verse, and store it in `out`.
///
/// # Arguments
/// * `$verse: &Verse` - The verse to fork into