diff options
author | Robert Speicher <rspeicher@gmail.com> | 2018-09-13 10:02:43 -0500 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2018-09-13 10:07:36 -0500 |
commit | cd2f74ca6a404ae46452b20d6f96720a1fd84203 (patch) | |
tree | 826de7606d72a44a0106dbd879dd9ad985d24413 /doc/development | |
parent | b15d28b4c757bd7e5aa0f07a86d8408b408780ae (diff) | |
download | gitlab-ce-cd2f74ca6a404ae46452b20d6f96720a1fd84203.tar.gz |
Resolve typos in Reusing Abstractions doc
Diffstat (limited to 'doc/development')
-rw-r--r-- | doc/development/reusing_abstractions.md | 4 |
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 |