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
path: root/app
diff options
context:
space:
mode:
authorRobert Schilling <rschilling@student.tugraz.at>2014-10-08 02:30:22 +0400
committerRobert Schilling <rschilling@student.tugraz.at>2014-10-08 02:30:22 +0400
commit9e0a7ecb43b68b22cae7d0ae97708baf62e27a6b (patch)
treea77966d48d2e41f54ad528c93c922d72c140096d /app
parente95a8e15007518761f9c95d1aca3f94b2d8946d3 (diff)
parent7984065776d0a32d245a3caa57342be83e45af2d (diff)
Merge pull request #7991 from cirosantilli/app-finders-readme
Improve formatting of app/finders/README.md [failure unrelated]
Diffstat (limited to 'app')
-rw-r--r--app/finders/README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/finders/README.md b/app/finders/README.md
index 47823c51efb..1f46518d230 100644
--- a/app/finders/README.md
+++ b/app/finders/README.md
@@ -1,7 +1,7 @@
# Finders
-This type of classes responsible for collectiong items based on different conditions.
-To prevent lookup methods in models like this:
+This type of classes responsible for collection items based on different conditions.
+To prevent lookup methods in models like this:
```ruby
class Project
@@ -13,10 +13,10 @@ end
issues = project.issues_for_user_filtered_by(user, params)
```
-Better use this:
+Better use this:
```ruby
issues = IssuesFinder.new.execute(project, user, filter)
```
-It will help keep models thiner
+It will help keep models thiner.