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 4a8d7235..ca90ae06 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)) ...