Skip to content

Commit 49e1e7c

Browse files
ryenusmgol
authored andcommitted
Types: Fix a typo: "{a,i}s passed as"
Closes jquerygh-1139
1 parent 7cd5ae8 commit 49e1e7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/Types.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ <h3 id="Boolean_Default"> Boolean Default </h3>
149149

150150
<h2 id="htmlString"> htmlString </h2>
151151
<p>A string is designated <strong>htmlString</strong> in jQuery documentation when it is used to represent one or more DOM elements, typically to be created and inserted in the document. When passed as an argument of the <code>jQuery()</code> function, the string is identified as HTML if it starts with <code>&lt;tag ... &gt;</code>) and is parsed as such until the final <code>&gt;</code> character. Prior to jQuery 1.9, a string was considered to be HTML if it contained <code>&lt;tag ... &gt;</code> <em>anywhere within the string</em>.</p>
152-
<p>When a string as passed as an argument to a manipulation method such as <code>.append()</code>, it is always considered to be HTML since jQuery's other common interpretation of a string (CSS selectors) does not apply in those contexts.</p>
152+
<p>When a string is passed as an argument to a manipulation method such as <code>.append()</code>, it is always considered to be HTML since jQuery's other common interpretation of a string (CSS selectors) does not apply in those contexts.</p>
153153
<p>For explicit parsing of a string to HTML, the <code><a href="/jQuery.parseHTML/">$.parseHTML()</a></code> method is available as of jQuery 1.8.</p>
154154
<pre><code data-lang="javascript">// Appends <b>hello</b>:
155155
$( "<b>hello</b>" ).appendTo( "body" );

0 commit comments

Comments
 (0)