mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-08-09 07:02:41 -04:00
fix typos
This commit is contained in:
parent
f59c4509ea
commit
20442f7b9a
5 changed files with 6 additions and 6 deletions
|
@ -443,7 +443,7 @@ Server Debug Commands:
|
|||
|
||||
let message = json_str_vec_u8(&msg["message"]);
|
||||
|
||||
// check is message body is ascii printable
|
||||
// check if message body is ascii printable
|
||||
let mut printable = true;
|
||||
for c in &message {
|
||||
if *c < 32 || *c > 126 {
|
||||
|
@ -481,7 +481,7 @@ Server Debug Commands:
|
|||
|
||||
let message = json_str_vec_u8(&call["message"]);
|
||||
|
||||
// check is message body is ascii printable
|
||||
// check if message body is ascii printable
|
||||
let mut printable = true;
|
||||
for c in &message {
|
||||
if *c < 32 || *c > 126 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue