diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2014-10-08 00:30:22 +0200 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2014-10-08 00:30:22 +0200 |
commit | 9e0a7ecb43b68b22cae7d0ae97708baf62e27a6b (patch) | |
tree | a77966d48d2e41f54ad528c93c922d72c140096d | |
parent | e95a8e15007518761f9c95d1aca3f94b2d8946d3 (diff) | |
parent | 7984065776d0a32d245a3caa57342be83e45af2d (diff) | |
download | gitlab-ce-9e0a7ecb43b68b22cae7d0ae97708baf62e27a6b.tar.gz |
Merge pull request #7991 from cirosantilli/app-finders-readme
Improve formatting of app/finders/README.md [failure unrelated]
-rw-r--r-- | app/finders/README.md | 8 |
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. |