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:
authorMichael Kozono <mkozono@gmail.com>2019-02-25 23:53:09 +0300
committerMichael Kozono <mkozono@gmail.com>2019-02-25 23:53:09 +0300
commitcae2c336819d1838507b0c5d21c609710b21ac4f (patch)
tree5bcac1fa18fa97dabc5fe4fd5ddd6297a963f72b /app/models/concerns/iid_routes.rb
parentea6945b8113160f2009daa854e612eb009690a2a (diff)
Revert "Merge branch 'fix-misspellings-app-comments' into 'master'"
This reverts commit 9202bbd129537a698b986e6295d0c783b5a84815, reversing changes made to 4b282e9ce1ae246c4538b3ede18d1380ea778029.
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 3eeb29b6595..b7f99e845ca 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` explicitly at each route generators. e.g. pipeline_path(project.id, pipeline.iid)
+ # instead you should define `iid` or `id` explictly at each route generators. e.g. pipeline_path(project.id, pipeline.iid)
def to_param
iid.to_s
end