From 9ecb9edc0644e9c40a0089d680783df5dbffb3d7 Mon Sep 17 00:00:00 2001 From: florentx Date: Mon, 7 Jun 2010 16:27:44 +0800 Subject: [PATCH] Typos --- docs/_themes | 1 - docs/htmlfaq.rst | 4 ++-- docs/quickstart.rst | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) delete mode 160000 docs/_themes diff --git a/docs/_themes b/docs/_themes deleted file mode 160000 index c775271c..00000000 --- a/docs/_themes +++ /dev/null @@ -1 +0,0 @@ -Subproject commit c775271cf77795a5358a13b2c2d08c0f61062557 diff --git a/docs/htmlfaq.rst b/docs/htmlfaq.rst index f7b700a9..06fd1558 100644 --- a/docs/htmlfaq.rst +++ b/docs/htmlfaq.rst @@ -63,7 +63,7 @@ the XHTML syntax over the syntax defined by the specification. In 2007, the specification was adopted as the basis of a new HTML specification under the umbrella of the W3C, known as HTML5. Currently, it appears that XHTML is losing traction, as the XHTML 2 working group has -een disbanded and HTML5 is being implemented by all major browser vendors. +been disbanded and HTML5 is being implemented by all major browser vendors. HTML versus XHTML ----------------- @@ -204,4 +204,4 @@ reasons given above: - It has the support of most browser vendors behind it. - It is much easier to write, and more compact. -For most applications, it is undoubtably better to use HTML5 than XHTML. +For most applications, it is undoubtedly better to use HTML5 than XHTML. diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 1ee4c1ac..11b0cd84 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -561,7 +561,7 @@ Werkzeug provides for you:: @app.route('/upload', methods=['GET', 'POST']) def upload_file(): if request.method == 'POST': - f= request.files['the_file'] + f = request.files['the_file'] f.save('/var/www/uploads/' + secure_filename(f.filename)) ...