nixos/doc/wireless: fix comments

Those had been misplaced by nixfmt.

Changed files
+3 -3
nixos
doc
manual
configuration
+3 -3
nixos/doc/manual/configuration/wireless.section.md
···
```nix
{
networking.wireless.networks = {
+
# SSID with no spaces or special characters
echelon = {
-
# SSID with no spaces or special characters
psk = "abcdefgh";
};
+
# SSID with spaces and/or special characters
"echelon's AP" = {
-
# SSID with spaces and/or special characters
psk = "ijklmnop";
};
+
# Hidden SSID
echelon = {
-
# Hidden SSID
hidden = true;
psk = "qrstuvwx";
};