From 0df03ec9258ff7afde9c9af20bbf1f8d2b6558ad Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Thu, 2 Nov 2017 23:20:00 -0400 Subject: [PATCH] port from vanilla: fixed spelling mistakes commit: 3f92d75115d8e8a2ab5a8234be0326b6391ac378 --- pd/man/pdsend.1 | 2 +- pd/src/x_vexp_if.c | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pd/man/pdsend.1 b/pd/man/pdsend.1 index 5491c7452..1f2761512 100644 --- a/pd/man/pdsend.1 +++ b/pd/man/pdsend.1 @@ -5,7 +5,7 @@ pdsend \- send messages to pd on this or a remote machine .B pdsend \fIport-number\fR [\fIhostname\fR] [udp|tcp] .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 semicolons. This is probably the easiest way to control pd from another application. The protocol used is easy to implement and is called FUDI. diff --git a/pd/src/x_vexp_if.c b/pd/src/x_vexp_if.c index 260a198d7..ded4bfe8b 100644 --- a/pd/src/x_vexp_if.c +++ b/pd/src/x_vexp_if.c @@ -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 @@ -1132,7 +1132,7 @@ ex_Sum(t_expr *e, long int argc, struct ex_ex *argv, struct ex_ex *optr) n1 = argv->ex_flt; break; 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_int = 0; return; @@ -1148,7 +1148,7 @@ ex_Sum(t_expr *e, long int argc, struct ex_ex *argv, struct ex_ex *optr) n2 = argv->ex_flt; break; 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_int = 0; return; @@ -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 @@ -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) { - 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_int = 0; return; -- GitLab