Skip to content
Snippets Groups Projects
Commit 0df03ec9 authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

port from vanilla: fixed spelling mistakes

commit: 3f92d75115d8e8a2ab5a8234be0326b6391ac378
parent ed623934
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ pdsend \- send messages to pd on this or a remote machine ...@@ -5,7 +5,7 @@ pdsend \- send messages to pd on this or a remote machine
.B pdsend .B pdsend
\fIport-number\fR [\fIhostname\fR] [udp|tcp] \fIport-number\fR [\fIhostname\fR] [udp|tcp]
.SH DESCRIPTION .SH DESCRIPTION
Pdsend sends messages to pd(1), via a socket conection, from pdsend's Pdsend sends messages to pd(1), via a socket connection, from pdsend's
standard input. This input can be any stream of Pd messages separated by standard input. This input can be any stream of Pd messages separated by
semicolons. This is probably the easiest way to control pd from another semicolons. This is probably the easiest way to control pd from another
application. The protocol used is easy to implement and is called FUDI. application. The protocol used is easy to implement and is called FUDI.
......
...@@ -1099,7 +1099,7 @@ ex_sum(t_expr *e, long int argc, struct ex_ex *argv, struct ex_ex *optr) ...@@ -1099,7 +1099,7 @@ ex_sum(t_expr *e, long int argc, struct ex_ex *argv, struct ex_ex *optr)
/* /*
* ex_Sum -- calculate the sum of table with the given boundries * ex_Sum -- calculate the sum of table with the given boundaries
*/ */
void void
...@@ -1132,7 +1132,7 @@ ex_Sum(t_expr *e, long int argc, struct ex_ex *argv, struct ex_ex *optr) ...@@ -1132,7 +1132,7 @@ ex_Sum(t_expr *e, long int argc, struct ex_ex *argv, struct ex_ex *optr)
n1 = argv->ex_flt; n1 = argv->ex_flt;
break; break;
default: default:
post("expr: Sum: boundries have to be fix values\n"); post("expr: Sum: boundaries have to be fix values\n");
optr->ex_type = ET_INT; optr->ex_type = ET_INT;
optr->ex_int = 0; optr->ex_int = 0;
return; return;
...@@ -1148,7 +1148,7 @@ ex_Sum(t_expr *e, long int argc, struct ex_ex *argv, struct ex_ex *optr) ...@@ -1148,7 +1148,7 @@ ex_Sum(t_expr *e, long int argc, struct ex_ex *argv, struct ex_ex *optr)
n2 = argv->ex_flt; n2 = argv->ex_flt;
break; break;
default: default:
post("expr: Sum: boundries have to be fix values\n"); post("expr: Sum: boundaries have to be fix values\n");
optr->ex_type = ET_INT; optr->ex_type = ET_INT;
optr->ex_int = 0; optr->ex_int = 0;
return; return;
...@@ -1201,7 +1201,7 @@ ex_avg(t_expr *e, long int argc, struct ex_ex *argv, struct ex_ex *optr) ...@@ -1201,7 +1201,7 @@ ex_avg(t_expr *e, long int argc, struct ex_ex *argv, struct ex_ex *optr)
/* /*
* ex_Avg -- calculate the avarage of table with the given boundries * ex_Avg -- calculate the avarage of table with the given boundaries
*/ */
void void
...@@ -1233,7 +1233,7 @@ ex_Avg(t_expr *e, long int argc, struct ex_ex *argv, struct ex_ex *optr) ...@@ -1233,7 +1233,7 @@ ex_Avg(t_expr *e, long int argc, struct ex_ex *argv, struct ex_ex *optr)
if (argv->ex_type != ET_INT || argv[1].ex_type != ET_INT) if (argv->ex_type != ET_INT || argv[1].ex_type != ET_INT)
{ {
post("expr: Avg: boundries have to be fix values\n"); post("expr: Avg: boundaries have to be fix values\n");
optr->ex_type = ET_INT; optr->ex_type = ET_INT;
optr->ex_int = 0; optr->ex_int = 0;
return; return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment