From b02ad503049823d3f71b02187a73b4030fe24b32 Mon Sep 17 00:00:00 2001 From: Zeeshan Khuwaja Date: Mon, 20 Jul 2020 15:31:43 +0800 Subject: [PATCH] Update mage-profiler.md fix repetitive words. --- src/guides/v2.3/config-guide/bootstrap/mage-profiler.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guides/v2.3/config-guide/bootstrap/mage-profiler.md b/src/guides/v2.3/config-guide/bootstrap/mage-profiler.md index ac370f1e0e7..7c70ee36021 100644 --- a/src/guides/v2.3/config-guide/bootstrap/mage-profiler.md +++ b/src/guides/v2.3/config-guide/bootstrap/mage-profiler.md @@ -13,7 +13,7 @@ Magento profiling enables you to: You can use a built-in profiler with Magento to perform tasks such as analyzing performance. The nature of profiling depends on the analytical tools you use. We support multiple formats, including HTML. When you enable the profiler, a `var/profiler.flag` file generates indicating the profiler is enabled and configurations. When disabled, this file is deleted. -- Display dependency graphs on a Magento page. A *dependency graph* is a list of object dependencies and all of their all their dependencies, and all the dependencies for those dependencies, and so on. +- Display dependency graphs on a Magento page. A *dependency graph* is a list of object dependencies and all of their dependencies, and all the dependencies for those dependencies, and so on. You should be particularly interested in the list of *unused dependencies*, which are objects that were created because they were requested in some constructor, but were never used (that is, none of their methods were called). As a result, processor time and memory spent to create these dependencies are wasted.