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:
Diffstat (limited to 'doc/development/creating_enums.md')
-rw-r--r--doc/development/creating_enums.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/creating_enums.md b/doc/development/creating_enums.md
index 1a72d99112f..301c6031d28 100644
--- a/doc/development/creating_enums.md
+++ b/doc/development/creating_enums.md
@@ -53,7 +53,7 @@ module Enums
end
end
-Enums::Pipeline.prepend_if_ee('EE::Enums::Pipeline')
+Enums::Pipeline.prepend_mod_with('Enums::Pipeline')
```
```ruby