replace in opening quotations

This commit is contained in:
2022-04-12 23:17:03 -03:00
parent 1ca5c25706
commit 19822c017f
89 changed files with 282 additions and 282 deletions

View File

@@ -92,7 +92,7 @@ top to bottom they are:
Message boxes, with a flag-shaped border, interpret the text as a message to
send whenever the box is
activated (by an incoming message or with a pointing device). The message in this
case consists simply of the number ``21".
case consists simply of the number "21".
<P>
</LI>
@@ -104,10 +104,10 @@ when you load a patch. Object boxes may hold hundreds of different
classes of objects--including oscillators, envelope generators, and other
signal processing modules to be introduced later--depending on the text
inside. In this example, the box holds an adder. In most Pd patches, the
majority of boxes are of type ``object". The first word typed into an object
majority of boxes are of type "object". The first word typed into an object
box specifies its
<A NAME="1223"></A><I>class</I>,
which in this case is just ``+". Any additional (blank-space-separated) words
which in this case is just "+". Any additional (blank-space-separated) words
appearing in the box are called
<A NAME="1225"></A><A NAME="1226"></A><I>creation arguments</I>,
which specify the initial state of the object when it is created.
@@ -131,7 +131,7 @@ by typing values in it.
</LI>
</UL>
In Figure
<A HREF="#fig01.10">1.10</A> (part a) the message box, when clicked, sends the message ``21" to an
<A HREF="#fig01.10">1.10</A> (part a) the message box, when clicked, sends the message "21" to an
object box which adds 13 to it. The lines connecting the boxes carry data
from one box to the next; outputs of boxes are on the bottom and inputs on top.
@@ -167,8 +167,8 @@ object outputs messages, but the <TT>*~</TT> object
outputs a signal. The inputs of a given object may or may not accept
signals (but they always accept messages, even if only to convert them to
signals). As a convention, object boxes with signal inputs or outputs
are all named with a trailing tilde (``<TT>~</TT>") as in ``<TT>*~</TT>"
and ``<TT>osc~</TT>".
are all named with a trailing tilde ("<TT>~</TT>") as in "<TT>*~</TT>"
and "<TT>osc~</TT>".
<P>
<HR>