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:
authorCiro Santilli <ciro.santilli@gmail.com>2014-10-08 00:39:45 +0400
committerCiro Santilli <ciro.santilli@gmail.com>2014-10-08 00:39:45 +0400
commit7984065776d0a32d245a3caa57342be83e45af2d (patch)
treeb7c93996fba92d9e9b09f91ea74607a5b000423f /app/finders
parentbbc52b000008c9020d2a38dafc09ff3341a69cae (diff)
Improve formatting of app/finders/README.md
Diffstat (limited to 'app/finders')
-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.