Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix spelling errors #117

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/os/gnu-linux/sanitycheck.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ int sanitycheck (int care_about_realtime,
fprintf (stderr, "\n--------------------------------------------------------------------------------\n");
fprintf (stderr, "WARNING: Your system seems to use frequency scaling.\n\n");
fprintf (stderr, " This can have a serious impact on audio latency. You have two choices:\n");
fprintf (stderr, "\t(1)turn it off, e.g. by chosing the 'performance' governor.\n");
fprintf (stderr, "\t(1)turn it off, e.g. by choosing the 'performance' governor.\n");
fprintf (stderr, "\t(2)Use the HPET clocksource by passing \"-c h\" to JACK\n");
fprintf (stderr, "\t (this second option only works on relatively recent computers)\n");
fprintf (stderr, "--------------------------------------------------------------------------------\n\n");
Expand Down
2 changes: 1 addition & 1 deletion drivers/netjack/netjack_packet.c
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ cache_packet_add_fragment (cache_packet *pack, char *packet_buf, int rcv_len)
jack_nframes_t framecnt = ntohl (pkthdr->framecnt);

if (framecnt != pack->framecnt) {
jack_error ("errror. framecnts dont match");
jack_error ("error. framecnts don't match");
return;
}

Expand Down
2 changes: 1 addition & 1 deletion jackd/controlapi.c
Original file line number Diff line number Diff line change
Expand Up @@ -1026,7 +1026,7 @@ jackctl_server_t * jackctl_server_create (
&server_ptr->parameters,
'Z',
"nozombies",
"dont zombifiy offending clients",
"don't zombifiy offending clients",
"",
JackParamBool,
&server_ptr->nozombies,
Expand Down
2 changes: 1 addition & 1 deletion jackd/engine.c
Original file line number Diff line number Diff line change
Expand Up @@ -3833,7 +3833,7 @@ jack_port_do_connect (jack_engine_t *engine,
}

if (srcport->shared->ptype_id != dstport->shared->ptype_id) {
jack_error ("ports used in attemped connection are not of "
jack_error ("ports used in attempted connection are not of "
"the same data type");
return -1;
}
Expand Down
4 changes: 2 additions & 2 deletions jackd/jackd.1.in
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ This cancels the effect any specified timeout value.
\fB\-C, \-\-timeout-thres \fItime\fR
.br
Stop processing clients if JACK cannot complete the process cycle in time (typically caused by CPU overloading or misbehaved clients). The optional \fItime\fR
argument specifies the number of miliseconds, during which consectutive process cycles must fail before JACK gives up (if the argument is not given, it defaults to 250). Processing will resume on the next change to the port
argument specifies the number of milliseconds, during which consectutive process cycles must fail before JACK gives up (if the argument is not given, it defaults to 250). Processing will resume on the next change to the port
graph (i.e. a port is added, removed, connected or disconnected)
.TP
\fB\-u, \-\-unlock\fR
Expand Down Expand Up @@ -412,7 +412,7 @@ Whether to use Autoconfig, or just start. (default: true)
Send packets N times (default: 1)
.TP
\fB\-e, \-\-native\-endian \fIint\fR
Dont convert samples to network byte order. (default: false)
Don't convert samples to network byte order. (default: false)
.TP
\fB\-J, \-\-jitterval \fIint\fR
attempted jitterbuffer microseconds on master (default: 0)
Expand Down