Skip to content

Commit a07f068

Browse files
committed
fixing typo on task queue page
1 parent 36789a9 commit a07f068

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-05-10T18:08:45Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-05-10T18:35:19Z</updated></feed>

source/content/pages/07-performance/0705-task-queues.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Task queues manage background work that must be executed outside the usual
2121
HTTP request-response cycle.
2222

2323

24-
## Why are tasks queues necessary?
24+
## Why are task queues necessary?
2525
Tasks are handled asynchronously either because they are not initiated by
2626
an HTTP request or because they are long-running jobs that would dramatically
2727
reduce the performance of an HTTP response.

task-queues.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<h1>Task queues</h1>
4848
<p>Task queues manage background work that must be executed outside the usual
4949
HTTP request-response cycle.</p>
50-
<h2>Why are tasks queues necessary?</h2>
50+
<h2>Why are task queues necessary?</h2>
5151
<p>Tasks are handled asynchronously either because they are not initiated by
5252
an HTTP request or because they are long-running jobs that would dramatically
5353
reduce the performance of an HTTP response.</p>

0 commit comments

Comments
 (0)