Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakuya Noguchi <takninnovationresearch@gmail.com>2019-02-25 11:08:04 +0300
committerTakuya Noguchi <takninnovationresearch@gmail.com>2019-02-25 11:25:19 +0300
commitbbf479a36c4d33acbd2246255b1f33ffb8c9624f (patch)
tree777817ba0687f26dfb5980b10f0d1e318887fa1e /app/models/concerns/iid_routes.rb
parent9428db8ec834ada489c921ba1025b16af97e827f (diff)
Fix misspellings in app/spec comments
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
Diffstat (limited to 'app/models/concerns/iid_routes.rb')
-rw-r--r--app/models/concerns/iid_routes.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/concerns/iid_routes.rb b/app/models/concerns/iid_routes.rb
index b7f99e845ca..3eeb29b6595 100644
--- a/app/models/concerns/iid_routes.rb
+++ b/app/models/concerns/iid_routes.rb
@@ -4,7 +4,7 @@ module IidRoutes
##
# This automagically enforces all related routes to use `iid` instead of `id`
# If you want to use `iid` for some routes and `id` for other routes, this module should not to be included,
- # instead you should define `iid` or `id` explictly at each route generators. e.g. pipeline_path(project.id, pipeline.iid)
+ # instead you should define `iid` or `id` explicitly at each route generators. e.g. pipeline_path(project.id, pipeline.iid)
def to_param
iid.to_s
end