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
path: root/doc
diff options
context:
space:
mode:
authorYorick Peterse <yorickpeterse@gmail.com>2016-06-14 17:28:40 +0300
committerYorick Peterse <yorickpeterse@gmail.com>2016-06-14 17:28:40 +0300
commitf558bf0de4d040dd824136b07d60af7eebef0084 (patch)
treefcdf53ffdbe96f835382d7dc6b147936afd3baea /doc
parentd4cd6dcaa024f8eca9089e67fb9b97022696d3e0 (diff)
parentdadc531353bdf0e384d05d173d19756b0d9fba13 (diff)
Merge branch '18527-instrument-private-methods' into 'master'
Instrument private methods and instance private methods See merge request !4639
Diffstat (limited to 'doc')
-rw-r--r--doc/development/instrumentation.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/development/instrumentation.md b/doc/development/instrumentation.md
index 50d2866ca46..6cd9b274d11 100644
--- a/doc/development/instrumentation.md
+++ b/doc/development/instrumentation.md
@@ -15,8 +15,8 @@ instrument code:
* `instrument_instance_method`: instruments a single instance method.
* `instrument_class_hierarchy`: given a Class this method will recursively
instrument all sub-classes (both class and instance methods).
-* `instrument_methods`: instruments all public class methods of a Module.
-* `instrument_instance_methods`: instruments all public instance methods of a
+* `instrument_methods`: instruments all public and private class methods of a Module.
+* `instrument_instance_methods`: instruments all public and private instance methods of a
Module.
To remove the need for typing the full `Gitlab::Metrics::Instrumentation`