@@ -173,7 +173,7 @@ helper functions:
173173
174174That's it! By printing ``form(form) ``, each field in the form is rendered, along
175175with a label and error message (if there is one). The ``form `` function also
176- surrounds everything in the necessary HTML ``form `` tag. As easy as this is,
176+ surrounds everything in the necessary HTML ``< form> `` tag. As easy as this is,
177177it's not very flexible (yet). Usually, you'll want to render each form field
178178individually so you can control how the form looks. You'll learn how to do
179179that in the ":ref: `form-rendering-template `" section.
@@ -268,7 +268,8 @@ possible paths:
268268 ..note ::
269269
270270 Redirecting a user after a successful form submission prevents the user
271- from being able to hit "refresh" and re-post the data.
271+ from being able to hit the "Refresh" button of their browser and re-post
272+ the data.
272273
273274..index ::
274275 single: Forms; Multiple Submit Buttons