fix: typos in error messages
This commit is contained in:
parent
a151838b7a
commit
eabfa58bd5
1 changed files with 2 additions and 2 deletions
|
|
@ -8,7 +8,7 @@ pub async fn start_systemd_target() -> Result<()> {
|
||||||
.arg("--user")
|
.arg("--user")
|
||||||
.arg("cosmic-session.target")
|
.arg("cosmic-session.target")
|
||||||
.spawn()
|
.spawn()
|
||||||
.wrap_err("Failed to start multi-user.target")?;
|
.wrap_err("Failed to start cosmic-session.target")?;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -18,6 +18,6 @@ pub fn stop_systemd_target() -> Result<()> {
|
||||||
.arg("--user")
|
.arg("--user")
|
||||||
.arg("cosmic-session.target")
|
.arg("cosmic-session.target")
|
||||||
.spawn()
|
.spawn()
|
||||||
.wrap_err("Failed to stop multi-user.target")?;
|
.wrap_err("Failed to stop cosmic-session.target")?;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue