diff --git a/infrastructure_and_operations/systemd_openrc_cheatsheet.myco b/infrastructure_and_operations/systemd_openrc_cheatsheet.myco
index e565609..a4082bc 100644
--- a/infrastructure_and_operations/systemd_openrc_cheatsheet.myco
+++ b/infrastructure_and_operations/systemd_openrc_cheatsheet.myco
@@ -12,4 +12,3 @@ table {
| stop a service | `systemctl stop <servicename>` | `service <servicename> stop` |
-| stop a service in such a way that it won't start itself up again without asking | `systemctl disable --now <servicename>`
-| `service <servicename> stop` |
+| stop a service in such a way that it won't start itself up again without asking | `systemctl disable --now <servicename>` | `service <servicename> stop` |
| get service status | `systemctl status <servicename>` | `service <servicename> status` (do not always trust this. search the process list as well) |