Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Ticket #11073 (closed defect: fixed)

Opened 7 months ago

Last modified 6 months ago

[PATCH][DOCS] Fix broken syntax in image_submit_tag examples

Reported by: wharris Assigned to: core
Priority: low Milestone: 2.x
Component: ActionPack Version: edge
Severity: minor Keywords: docs verified
Cc:

Description

Some examples for image_submit_tag in form_tag_helper.rb have the closing parentheses in the wrong place. The patch changes examples like image_submit_tag("purchase.png"), :disabled => true to examples like image_submit_tag("purchase.png", :disabled => true).

Attachments

fix_image_submit_tag_examples.diff (1.3 kB) - added by wharris on 02/10/08 21:46:54.

Change History

02/10/08 21:46:54 changed by wharris

  • attachment fix_image_submit_tag_examples.diff added.

02/11/08 02:33:43 changed by tpope

+1

02/15/08 14:58:26 changed by spideryoung

+1

02/26/08 16:47:58 changed by jbilbo

+1

02/26/08 16:53:06 changed by wharris

  • keywords changed from docs to docs Verified.

02/26/08 16:55:06 changed by wharris

  • keywords changed from docs Verified to docs verified.

03/02/08 04:42:55 changed by nzkoz

  • status changed from new to closed.
  • resolution set to fixed.

(In [8970]) Fix syntax errors in the documentation for image submit tag. Closes #11073 [wharris]