summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2023-11-02 17:54:06 -0400
committerDavid Gay <david@davidgay.org>2023-11-02 17:54:06 -0400
commit5f3ba79ee71455ea93cc4e7e2b6969048b3c9805 (patch)
tree6810894c93389c139f4aa01ef7d207ce8bde37e1 /app
parent1dc91e42ac2958e44d6c89f882366628904ca5b0 (diff)
Typofix
Diffstat (limited to 'app')
-rw-r--r--app/controllers/runs_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/runs_controller.rb b/app/controllers/runs_controller.rb
index 303c0e3..1495d78 100644
--- a/app/controllers/runs_controller.rb
+++ b/app/controllers/runs_controller.rb
@@ -15,7 +15,7 @@ class RunsController < ApplicationController
@run = Run.new(run_params)
@run.user = current_user
if @run.save
- redirect_to run_path(@run), notice: "Created runs."
+ redirect_to run_path(@run), notice: "Created run."
else
render :new, status: :unprocessable_entity
end