summaryrefslogtreecommitdiffhomepage
path: root/src/process
diff options
context:
space:
mode:
Diffstat (limited to 'src/process')
-rw-r--r--src/process/openvpn.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process/openvpn.rs b/src/process/openvpn.rs
index 79237b9eff..2d25deb965 100644
--- a/src/process/openvpn.rs
+++ b/src/process/openvpn.rs
@@ -161,11 +161,11 @@ impl ChildSpawner for OpenVpnCommand {
pub enum OpenVpnEvent {
/// An event from the plugin loaded into OpenVPN.
PluginEvent(Result<HashMap<String, String>>),
- /// The OpenVPN process exited. The bool indicate if the process exited cleanly.
+ /// The OpenVPN process exited. The bool indicates if the process exited cleanly.
Shutdown(bool),
}
-/// A struct able to start and monitor OpenVPN procesess.
+/// A struct able to start and monitor OpenVPN processes.
pub struct OpenVpnMonitor {
command: OpenVpnCommand,
monitor: ChildMonitor<OpenVpnCommand>,