summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/step.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/step.rs b/src/step.rs
index 4140471..a37f23c 100644
--- a/src/step.rs
+++ b/src/step.rs
@@ -25,17 +25,17 @@ impl Step {
}
/// Return the name of a step.
- pub fn name<'a>(&'a self) -> &'a str {
+ pub fn name(&self) -> &str {
&self.name
}
/// Return the label of a step.
- pub fn label<'a>(&'a self) -> &'a str {
+ pub fn label(&self) -> &str {
&self.label
}
/// Return the status of a step.
- pub fn status<'a>(&'a self) -> Status {
+ pub fn status(&self) -> Status {
self.status
}