diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2017-09-19 09:02:25 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2017-09-19 09:02:25 +0200 |
| commit | 036e10fe4846679f710cf5a3571a730ce42563d4 (patch) | |
| tree | c9ab111dc803f6ba4d1a5d43fc18ba99351d1b10 /talpid-core | |
| parent | 87a0ab01ae8f82ea7f7592b4b59899e479391419 (diff) | |
| download | mullvadvpn-036e10fe4846679f710cf5a3571a730ce42563d4.tar.xz mullvadvpn-036e10fe4846679f710cf5a3571a730ce42563d4.zip | |
Fix comments split over multiple lines
Diffstat (limited to 'talpid-core')
| -rw-r--r-- | talpid-core/src/process/openvpn.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/talpid-core/src/process/openvpn.rs b/talpid-core/src/process/openvpn.rs index ce6039bcb3..046d70b569 100644 --- a/talpid-core/src/process/openvpn.rs +++ b/talpid-core/src/process/openvpn.rs @@ -65,8 +65,7 @@ impl OpenVpnCommand { } /// Sets the path to the file where the username and password for user-pass authentication - /// is - /// stored. See the `--auth-user-pass` OpenVPN documentation for details. + /// is stored. See the `--auth-user-pass` OpenVPN documentation for details. pub fn user_pass<P: AsRef<Path>>(&mut self, path: P) -> &mut Self { self.user_pass_path = Some(path.as_ref().to_path_buf()); self @@ -162,8 +161,7 @@ impl OpenVpnCommand { impl fmt::Display for OpenVpnCommand { /// Format the program and arguments of an `OpenVpnCommand` for display. Any non-utf8 data - /// is - /// lossily converted using the utf8 replacement character. + /// is lossily converted using the utf8 replacement character. fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result { fmt.write_str(&self.openvpn_bin.to_string_lossy())?; for arg in self.get_arguments().iter().map(|arg| arg.to_string_lossy()) { |
