summaryrefslogtreecommitdiff
path: root/src/connection.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/connection.rs')
-rw-r--r--src/connection.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connection.rs b/src/connection.rs
index 59031c6..9cf7923 100644
--- a/src/connection.rs
+++ b/src/connection.rs
@@ -92,7 +92,7 @@ impl Connection {
let mut send = String::new();
for mass in within_range {
send.push_str(&mass.serialize());
- send.push_str(",");
+ send.push_str(";");
}
send.push_str("\n");
match self.stream.write(send.as_bytes()) {