Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in auth_key_pair_cloud route #12031

Merged
merged 1 commit into from
Oct 18, 2016
Merged

Commits on Oct 18, 2016

  1. Fix typo in auth_key_pair_cloud route

    We're in a %w(...) so the comma is not needed.
    
    This was added in 3580a50.
    
    **Before**:
    
        $ bin/rake routes |grep "auth_key_pair_cloud\/tag_edit_form_field_changed"
        GET     /auth_key_pair_cloud/tag_edit_form_field_changed,(/:id)(.:format)          auth_key_pair_cloud#tag_edit_form_field_changed,
        POST    /auth_key_pair_cloud/tag_edit_form_field_changed(/:id)(.:format)           auth_key_pair_cloud#tag_edit_form_field_changed
    
    **After**:
    
        $ bin/rake routes |grep "auth_key_pair_cloud\/tag_edit_form_field_changed"
        GET     /auth_key_pair_cloud/tag_edit_form_field_changed(/:id)(.:format)           auth_key_pair_cloud#tag_edit_form_field_changed
        POST    /auth_key_pair_cloud/tag_edit_form_field_changed(/:id)(.:format)           auth_key_pair_cloud#tag_edit_form_field_changed
    jrafanie committed Oct 18, 2016
    Configuration menu
    Copy the full SHA
    df4c6de View commit details
    Browse the repository at this point in the history