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:
authorRobert Speicher <rspeicher@gmail.com>2018-09-13 18:02:43 +0300
committerRobert Speicher <rspeicher@gmail.com>2018-09-13 18:07:36 +0300
commitcd2f74ca6a404ae46452b20d6f96720a1fd84203 (patch)
tree826de7606d72a44a0106dbd879dd9ad985d24413 /doc/development/reusing_abstractions.md
parentb15d28b4c757bd7e5aa0f07a86d8408b408780ae (diff)
Resolve typos in Reusing Abstractions doc
Diffstat (limited to 'doc/development/reusing_abstractions.md')
-rw-r--r--doc/development/reusing_abstractions.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/development/reusing_abstractions.md b/doc/development/reusing_abstractions.md
index 6d178a5d335..83d7d42bd1f 100644
--- a/doc/development/reusing_abstractions.md
+++ b/doc/development/reusing_abstractions.md
@@ -76,7 +76,7 @@ projects =
.that_might_be_necessary
else
current_user
- .projects_visibile_to_user
+ .projects_visible_to_user
.any_additional_method_calls
.that_might_be_necessary
end
@@ -101,7 +101,7 @@ Now let's take a look at the various abstraction levels available, and what they
can (or cannot) reuse. For this we can use the following table, which defines
the various abstractions and what they can (not) reuse:
-| Abstraction | Service classes | Finders | Presenters | Serializers | Model instance method | Model class methods | Active Record | WOrker
+| Abstraction | Service classes | Finders | Presenters | Serializers | Model instance method | Model class methods | Active Record | Worker
|:-----------------------|:-----------------|:---------|:------------|:--------------|:------------------------|:----------------------|:----------------|:--------
| Controller | Yes | Yes | Yes | Yes | Yes | No | No | No
| Service class | Yes | Yes | No | No | Yes | No | No | Yes