以下のコードの空欄に入る適切なパスヘルパーはどれですか? ```ruby def update @post = Post.find(params[:id]) if @post.update(post_params) redirect_to ______, notice: "Post was successfully updated." else render :edit end end ```