Rails: syntax error, unexpected keyword_ensure, expecting $end
问题 I'm creating a very basic rails app (learning tutorial) and can't understand why I'm getting this error. I've tried troubleshooting but to no avail. My code: <ul class = "nav pull-right"> <% if user_signed_in? %> <li><%= link_to current_user.full_name, edit_user_registration_path %></li> <li><%= link_to "Log Out", destroy_user_session_path, method: :delete %></li> <% end %> <% else %> <li><%= link_to "Log In", new_user_session_path %></li> <li><%= link_to "Sign Up", new_user_registration_path