summaryrefslogtreecommitdiffstats
path: root/zellij-utils/src
diff options
context:
space:
mode:
authorKen Matsui <26405363+ken-matsui@users.noreply.github.com>2021-11-01 04:39:57 +0900
committerGitHub <noreply@github.com>2021-10-31 20:39:57 +0100
commitf902f3ed1d856f01962b7501a3761ac634aed59c (patch)
tree7056d8e57e05c2a8b2c458e755ea830df4cb8367 /zellij-utils/src
parent03e62eb91c4f53a5be1548fecacc1fd5173adf47 (diff)
fix(typo): Correct typo from `occured` to `occurred` (#821)
Diffstat (limited to 'zellij-utils/src')
-rw-r--r--zellij-utils/src/ipc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/zellij-utils/src/ipc.rs b/zellij-utils/src/ipc.rs
index 995b89fb4..b27a097a1 100644
--- a/zellij-utils/src/ipc.rs
+++ b/zellij-utils/src/ipc.rs
@@ -104,7 +104,7 @@ impl Display for ExitReason {
f,
"Session attached to another client. Use --force flag to force connect."
),
- Self::Error(e) => write!(f, "Error occured in server:\n{}", e),
+ Self::Error(e) => write!(f, "Error occurred in server:\n{}", e),
}
}
}