summaryrefslogtreecommitdiff
path: root/doc/development_guide
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2022-03-12 09:08:07 -0500
committerJacob Walls <jacobtylerwalls@gmail.com>2022-04-29 13:39:37 -0400
commit9cb9c2e4b6d75b8b3d8f14975032ae5704106ce9 (patch)
tree38976d7c1b1bab33677e80505c1fc8aed18b36fe /doc/development_guide
parentf7316cac552e5c98e931b44597358dc41256bc1e (diff)
downloadpylint-git-9cb9c2e4b6d75b8b3d8f14975032ae5704106ce9.tar.gz
Fix typos in profiling document
Diffstat (limited to 'doc/development_guide')
-rw-r--r--doc/development_guide/profiling.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/development_guide/profiling.rst b/doc/development_guide/profiling.rst
index 13a8bbaf4..bb49038ff 100644
--- a/doc/development_guide/profiling.rst
+++ b/doc/development_guide/profiling.rst
@@ -67,7 +67,7 @@ Lastly, to profile a run over your own module or code you can use:
stats.sort_stats("cumtime")
stats.print_stats()
-The documentation of the ``pstats`` module discusses other possibilites to interact with
+The documentation of the ``pstats`` module discusses other possibilities to interact with
the profiling output.
@@ -88,8 +88,8 @@ The previous line tells us that this method was called 622 times during the prof
function itself for 6 ms in total. The time per call is less than a millisecond (0.006 / 622)
and thus is displayed as being 0.
-Often you are more interested in the cumulative time (per call). This refers to the time spend within the function
-and any of the functions it called or they functions they called (etc.). In our example, the ``visit_importfrom``
+Often you are more interested in the cumulative time (per call). This refers to the time spent within the function
+and any of the functions it called or the functions they called (etc.). In our example, the ``visit_importfrom``
method and all of its child-functions took a little over 8 seconds to exectute, with an execution time of
0.013 ms per call.