summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/README.md b/README.md
index 3cd6f6c..aba0480 100644
--- a/README.md
+++ b/README.md
@@ -32,11 +32,9 @@ fn mpd_pause(addr: &SocketAddr) -> Result<()> {
Ok(())
}
-# fn main() -> Result<()> {
// If MPD is listening on a UNIX socket, we can do this:
mpd_pause(&"unix:/var/lib/mpd/socket".parse().unwrap())?;
// Or if it's running on another system in the network:
mpd_pause(&"10.3.3.7:6600".parse().unwrap())
-# }
```