@@ -18,7 +18,7 @@ were, no one would ever have paid any attention to it.
1818(((decentralization)))(((compatibility)))Web technology has, from the
1919start, been decentralized, not just technically but also in the
2020way it has evolved. Various browser vendors have added new
21- functionality in ad- hoc and sometimes poorly thought out ways, which
21+ functionality in ad hoc and sometimes poorly thought out ways, which
2222then sometimes ended up being adopted by others and finally set down
2323as a ((standard)).
2424
@@ -46,7 +46,7 @@ _((Internet))_. It has lived up to its promise.
4646A computer can use this network to spew bits at another computer. For
4747any effective ((communication)) to arise out of this bit-spewing, the
4848computers at both ends must know what the bits are supposed to
49- mean . The meaning of any given sequence of bits depends entirely
49+ represent . The meaning of any given sequence of bits depends entirely
5050on the kind of thing that it is trying to express and on the
5151((encoding)) mechanism used.
5252
@@ -179,7 +179,7 @@ image::img/home-page.png[alt="My home page",width="6.3cm"]
179179
180180endif::book_target[]
181181
182- (((angular brackets)))The tags, wrapped in angular brackets (`<`
182+ (((angle brackets)))The tags, wrapped in angle brackets (`<`
183183and `>`), provide information about the ((structure)) of the
184184document. The other ((text)) is just plain text.
185185
@@ -210,18 +210,18 @@ closed. An example of this would be `<img
210210src="http://example.com/image.jpg">`, which will display the ((image))
211211found at the given source URL.
212212
213- (((escaping,in HTML)))To be able to include ((angular brackets)) in
213+ (((escaping,in HTML)))To be able to include ((angle brackets)) in
214214the text of a document, even though they have a special meaning in
215215HTML, yet another form of special notation has to be introduced. A
216- plain opening angular bracket is written as `<` (“less than”), and
216+ plain opening angle bracket is written as `<` (“less than”), and
217217a closing bracket is written as `>` (“greater than”). In HTML, an ampersand
218- (& ) character followed by a word and a semicolon (; ) is called an
218+ (`&` ) character followed by a word and a semicolon (`;` ) is called an
219219_((entity))_, and will be replaced by the character it encodes.
220220
221221(((backslash character)))(((ampersand character)))(((double-quote
222222character)))This is analogous to the way backslashes are used in
223223JavaScript strings. Since this mechanism gives ampersand characters a
224- special meaning too, those need to be escaped as `&`. Inside an
224+ special meaning, too, those need to be escaped as `&`. Inside an
225225attribute, which is wrapped in double quotes, `"` can be used to
226226insert an actual quote character.
227227
@@ -293,7 +293,7 @@ JavaScript program) from a URL.
293293
294294The _code/hello.js_ file included here contains the same simple program,
295295`alert("hello!")`. When an HTML page references other URLs as part of
296- itself, for example an image file or a script, web browsers will
296+ itself, for example an image file or a script— web browsers will
297297retrieve them immediately and include them in the page.
298298
299299(((script (HTML tag))))(((closing tag)))A script tag must always be
0 commit comments