From 23af03dbfb283045ff952267ee83c2b7f2ef6380 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Tue, 7 Nov 2017 23:29:03 +0100 Subject: [PATCH] Fix bad grammar "allows ". In standard English, the verb "allows" can never take an infinitive as its direct object. This patch corrects these mistakes. --- m4/lls/audioc.suite.m4 | 6 +++--- m4/lls/filter.suite.m4 | 6 +++--- m4/lls/include/log-timing.m4 | 2 +- m4/lls/play.suite.m4 | 4 ++-- m4/lls/server.suite.m4 | 14 +++++++------- mp.c | 6 +++--- sched.c | 2 +- sideband.h | 2 +- vss.c | 2 +- web/download.in.html | 6 +++--- web/manual.md | 12 ++++++------ 11 files changed, 31 insertions(+), 31 deletions(-) diff --git a/m4/lls/audioc.suite.m4 b/m4/lls/audioc.suite.m4 index 1c037bc7..6ad8c716 100644 --- a/m4/lls/audioc.suite.m4 +++ b/m4/lls/audioc.suite.m4 @@ -6,9 +6,9 @@ version-string = GIT_VERSION() purpose = communicate with para_audiod through a local socket non-opts-name = [command [options]] [description] - The client program to control para_audiod at runtime. It allows to - enable/disable streaming, to receive status info, or to grab the - audio stream at any point of the decoding process. + The client program to control para_audiod at runtime. It can + enable/disable streaming, receive status info, or grab the audio + stream at any point of the decoding process. If no command is given, para_audioc enters interactive mode. [/description] diff --git a/m4/lls/filter.suite.m4 b/m4/lls/filter.suite.m4 index 23d5ed01..376e8758 100644 --- a/m4/lls/filter.suite.m4 +++ b/m4/lls/filter.suite.m4 @@ -4,9 +4,9 @@ version-string = GIT_VERSION() [supercommand para_filter] purpose = decode or process audio data from STDIN to STDOUT [description] - This program allows to specify a chain of filters which transform the - audio stream read from STDIN. A common mode of operation is to decode - an mp3 file with the mp3dec filter, but many other filters exist which + This program transforms the audio stream read from STDIN by chaining + one or more filters. A common mode of operation is to decode an + mp3 file with the mp3dec filter, but many other filters exist which transform the audio stream in different ways. [/description] m4_include(common-option-section.m4) diff --git a/m4/lls/include/log-timing.m4 b/m4/lls/include/log-timing.m4 index a7364e19..ba19be98 100644 --- a/m4/lls/include/log-timing.m4 +++ b/m4/lls/include/log-timing.m4 @@ -3,7 +3,7 @@ summary = show milliseconds in log messages [help] Selecting this option causes milliseconds to be included in - the log message output. This allows to measure the interval + the log message output. This allows measuring of the interval between log messages in milliseconds which is useful for identifying timing problems. [/help] diff --git a/m4/lls/play.suite.m4 b/m4/lls/play.suite.m4 index 0fbba0c0..4af2a05a 100644 --- a/m4/lls/play.suite.m4 +++ b/m4/lls/play.suite.m4 @@ -7,8 +7,8 @@ version-string = GIT_VERSION() purpose = command line audio player non-opts-name = ... [description] - para_play operates either in command mode or in insert mode. In - insert mode it presents a prompt and allows to enter commands like + para_play operates either in command mode or in insert mode. In insert + mode it presents a prompt and allows the user to enter commands like stop, play, pause etc. In command mode the current audio file and the playback position are shown and the program reads single key strokes from stdin. Keys may be mapped to commands so that the configured diff --git a/m4/lls/server.suite.m4 b/m4/lls/server.suite.m4 index 5bba85d4..6ffdc007 100644 --- a/m4/lls/server.suite.m4 +++ b/m4/lls/server.suite.m4 @@ -159,10 +159,10 @@ version-string = GIT_VERSION() summary = make the http access control list a whitelist [help] The default is to use blacklists, i.e. connections to the http sender - are allowed unless the connecting host matches a pattern given by a - http-access option. This allows to use access control the other way - round: Connections are denied from hosts which are not explicitly - allowed by one or more http-access options. + are allowed unless the connecting host matches a pattern given by + a http-access option. This option allows using access control lists + the other way round: Connections are denied from hosts which are not + explicitly allowed by one or more http-access options. [/help] [option http-access] summary = add an entry to the http access control list @@ -247,9 +247,9 @@ version-string = GIT_VERSION() (path MTU) of an incoming connection, i.e. on the largest packet size that can be transmitted without causing fragmentation. - This option allows to use a value less than the MPS in order to - fine-tune application performance. Values greater than the MPS of an - incoming connection can not be set. + This option allows values less than the MPS in order to fine-tune + application performance. Values greater than the MPS of an incoming + connection can not be set. [/help] [option dccp-data-slices-per-group] summary = the number of non-redundant slices per FEC group diff --git a/mp.c b/mp.c index 3c84a054..3f6cfbe6 100644 --- a/mp.c +++ b/mp.c @@ -6,7 +6,7 @@ * This file contains the public and the private API of the flex/bison based * mood parser. * - * The public API (at the bottom of the file) allows to parse the same mood + * The public API (at the bottom of the file) allows parsing the same mood * definition many times in an efficient manner. * * The first function to all is \ref mp_init(), which analyzes the given mood @@ -61,8 +61,8 @@ struct mp_context { * * This function turns a generalized C99 string literal like "xyz\n" into a C * string (containing the three characters 'x', 'y' and 'z', followed by a - * newline character and the terminating zero byte). The function allows to - * specify different quote characters so that, for example, regular expression + * newline character and the terminating zero byte). The function receives + * quote characters as an argument so that, for example, regular expression * patterns enclosed in '/' can be parsed as well. To parse a proper string * literal, one has to pass two double quotes as the second argument. * diff --git a/sched.c b/sched.c index 4fc65b4b..a2903940 100644 --- a/sched.c +++ b/sched.c @@ -168,7 +168,7 @@ again: * \param tptr Identifies the task to reap. * * This function is similar to wait(2) in that it returns information about a - * terminated task and allows to release the resources associated with the + * terminated task which allows releasing the resources associated with the * task. Until this function is called, the terminated task remains in a zombie * state. * diff --git a/sideband.h b/sideband.h index 3023c7b6..6973b845 100644 --- a/sideband.h +++ b/sideband.h @@ -97,7 +97,7 @@ struct sb_context; /** * The type of a sideband transformation. * - * The sideband API allows to filter all data through an arbitrary + * The sideband API allows the filtering of data through an arbitrary * transformation, which is useful for crypto purposes. The transformation may * either transform the data in place, or return a pointer to a new buffer * which contains the transformed source buffer. The internal sideband diff --git a/vss.c b/vss.c index 00c632c7..e6705b6f 100644 --- a/vss.c +++ b/vss.c @@ -298,7 +298,7 @@ static int initialize_fec_client(struct fec_client *fc, struct vss_task *vsst) if (fcp->init_fec) { /* * Set the maximum slice size to the Maximum Packet Size if the - * transport protocol allows to determine this value. The user + * transport protocol allows determination of this value. The user * can specify a slice size up to this value. */ ret = fcp->init_fec(fc->sc); diff --git a/web/download.in.html b/web/download.in.html index 1ca8a4d2..9ef92b7a 100644 --- a/web/download.in.html +++ b/web/download.in.html @@ -15,8 +15,8 @@ provided at this point. There are several ways to download the source:

The repository contains the full history of the project since 2006, all work in progress and the source - code for the web pages. Choosing this option allows to - check out any of the four integration branches maint, + code for the web pages. Choosing this option allows the + checkout of any of the four integration branches maint, master, next, pu (see the Git branches @@ -68,7 +68,7 @@ provided at this point. There are several ways to download the source: gitweb page contains a snapshot link for each revision. This - allows to get a specific revision without downloading + allows getting a specific revision without downloading the full history. diff --git a/web/manual.md b/web/manual.md index 23966565..04c716a8 100644 --- a/web/manual.md +++ b/web/manual.md @@ -230,9 +230,9 @@ compatible with arbitrary HTTP streaming sources (e.g. icecast). In addition to the three network streaming modes, para_recv can also operate in local (afh) mode. In this mode it writes the content of an audio file on the local file system in complete chunks to stdout, -optionally 'just in time'. This allows to cut an audio file without -first decoding it, and it enables third-party software which is unaware -of the particular audio format to send complete frames in real time. +optionally 'just in time'. This allows cutting audio files without +decoding, and it enables third-party software which is unaware of +the particular audio format to send complete frames in real time.

para_filter

@@ -1741,7 +1741,7 @@ These filters are rather simple and do not modify the audio stream at all. The wav filter is only useful with para_filter and in connection with a decoder. It asks the decoder for the number of channels and the sample rate of the stream and adds a Microsoft wave header containing -this information at the beginning. This allows to write wav files +this information at the beginning. This allows writing wav files rather than raw PCM files (which do not contain any information about the number of channels and the sample rate). @@ -1804,8 +1804,8 @@ emulation for backwards compatibility. This API is rather simple but also limited. For example only one application can open the device at any time. The OSS writer is activated by default on BSD Systems. -- *FILE*. The file writer allows to capture the audio stream and -write the PCM data to a file on the file system rather than playing +- *FILE*. The file writer allows capturing the audio stream and +writing the PCM data to a file on the file system rather than playing it through a sound device. It is supported on all platforms and is always compiled in. -- 2.39.2