Skip to content

Commit 8daf378

Browse files
committed
Integrate proofreading for Chapter 12
1 parent ee79d2e commit 8daf378

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

12_browser.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ were, no one would ever have paid any attention to it.
1818
(((decentralization)))(((compatibility)))Web technology has, from the
1919
start, been decentralized, not just technically but also in the
2020
way 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
2222
then sometimes ended up being adopted by others and finally set down
2323
as a ((standard)).
2424

@@ -46,7 +46,7 @@ _((Internet))_. It has lived up to its promise.
4646
A computer can use this network to spew bits at another computer. For
4747
any effective ((communication)) to arise out of this bit-spewing, the
4848
computers 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
5050
on 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

180180
endif::book_target[]
181181

182-
(((angular brackets)))The tags, wrapped in angular brackets (`<`
182+
(((angle brackets)))The tags, wrapped in angle brackets (`<`
183183
and `>`), provide information about the ((structure)) of the
184184
document. The other ((text)) is just plain text.
185185

@@ -210,18 +210,18 @@ closed. An example of this would be `<img
210210
src="http://example.com/image.jpg">`, which will display the ((image))
211211
found 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
214214
the text of a document, even though they have a special meaning in
215215
HTML, yet another form of special notation has to be introduced. A
216-
plain opening angular bracket is written as `&lt;` (“less than”), and
216+
plain opening angle bracket is written as `&lt;` (“less than”), and
217217
a closing bracket is written as `&gt;` (“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
222222
character)))This is analogous to the way backslashes are used in
223223
JavaScript strings. Since this mechanism gives ampersand characters a
224-
special meaning too, those need to be escaped as `&amp;`. Inside an
224+
special meaning, too, those need to be escaped as `&amp;`. Inside an
225225
attribute, which is wrapped in double quotes, `&quot;` can be used to
226226
insert an actual quote character.
227227

@@ -293,7 +293,7 @@ JavaScript program) from a URL.
293293

294294
The _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 scriptweb browsers will
297297
retrieve them immediately and include them in the page.
298298

299299
(((script (HTML tag))))(((closing tag)))A script tag must always be

0 commit comments

Comments
 (0)