diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-10-03 03:11:55 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-10-03 03:14:03 +0300 |
commit | 35bc9b88c84d845ead59d855c994ac9bc151d035 (patch) | |
tree | 3cd0bf4b4ee7c192825917f056c86ca93c6d1f47 /assets | |
parent | index.html: make errors stand out (diff) | |
download | wireguard-config-35bc9b88c84d845ead59d855c994ac9bc151d035.tar.gz wireguard-config-35bc9b88c84d845ead59d855c994ac9bc151d035.zip |
fix typos
Diffstat (limited to 'assets')
-rw-r--r-- | assets/js/main.js | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/assets/js/main.js b/assets/js/main.js index b042c2a..28ffe04 100644 --- a/assets/js/main.js +++ b/assets/js/main.js @@ -231,8 +231,7 @@ function wg_quick_server_file(data) { var path = `/etc/wireguard/${iface}.conf`; return new ConfigFile(path, `# On the server, add this to ${path} and either restart -# the wg-quick@${iface} systemd service, or run \`wg syncconf ${iface} -# ${path}\`. +# the wg-quick@${iface} systemd service, or run \`wg syncconf ${iface} ${path}\`. # Previous contents goes here... @@ -269,7 +268,7 @@ function systemd_client_network_file(data) { var path = `/etc/systemd/network/${iface}.network`; return new ConfigFile(path, `# This is the second file. Put this into ${path} -# and if you're done the first file already, restart the systemd-networkd +# and if you're done with the first file already, restart the systemd-networkd # service. [Match] @@ -332,7 +331,7 @@ function nmcli_server_file(data) { var path = `/etc/NetworkManager/system-connections/${iface}.nmconnection`; return new ConfigFile(path, `# On the server, add this to ${path} -# and run \`nmcli c reload && nmcli c up ${iface}\'; +# and run \`nmcli c reload && nmcli c up ${iface}\`. # Previous contents goes here... |