Skip to content

Commit 72c1222

Browse files
authored
Fix Quick Brown Fox .lower() Result
Fix to issue indicated by @heagerty in issue #133 (Quick Brown Fox)
1 parent e1aa2ad commit 72c1222

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1050,7 +1050,7 @@ <h3 id="the-beauty-of-the-standard-library"><a href="#the-beauty-of-the-standard
10501050
<div class="innertw" data-mname='grabbag'><img src="images/twitter-blk.png" width="20"></div>
10511051
</div>
10521052

1053-
<p>What does that mean, to process text? Well, you might have a string of text (The Quick Brown Fox) and save it in a variable called <code>my_string</code>. So now you can call standard methods on that string. You can say <code>my_string.lower()</code>, and it will make all the words lowercase, producing &ldquo;the quick brown fox.&rdquo; </p>
1053+
<p>What does that mean, to process text? Well, you might have a string of text (The Quick Brown Fox) and save it in a variable called <code>my_string</code>. So now you can call standard methods on that string. You can say <code>my_string.lower()</code>, and it will make all the words lowercase, producing &ldquo;the quick brown fox&rdquo;. </p>
10541054

10551055
<p>Truly understanding a language&rsquo;s standard library is one of the ways one becomes proficient in that language. Typically you just visit Web pages or read a book.</p>
10561056

0 commit comments

Comments
 (0)