Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Gates <tim.gates@iress.com>2020-12-29 01:35:29 +0300
committerTim Gates <tim.gates@iress.com>2020-12-30 22:01:18 +0300
commitcf7b0d9768e5e922a7abea42da7fd93244f1e96a (patch)
tree5f06c78bfe959c4413cde9793e62064e00c4948e
parentba9e10cfd80623909eaa4217add4ba3665d2bee2 (diff)
docs: fix simple typo, thier -> their
There is a small typo in docs/How_to_use_the_flame_graph_profiler.md. Should read `their` rather than `thier`.
-rw-r--r--docs/How_to_use_the_flame_graph_profiler.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/How_to_use_the_flame_graph_profiler.md b/docs/How_to_use_the_flame_graph_profiler.md
index b1cdaf358e..b40a86bb24 100644
--- a/docs/How_to_use_the_flame_graph_profiler.md
+++ b/docs/How_to_use_the_flame_graph_profiler.md
@@ -27,7 +27,7 @@ Note: The profiler front-end itself is quite "heavy" (ok, not optimised). It run
What the Profiler Sees
----------------------
-The profiler doesn't capture every function call in Cura. It hooks into a number of important systems which give a good picture of activity without too much run time overhead. The most important system is Uranium's signal mechanism and PyQt5 slots. Functions which are called via the signal mechanism are recorded and thier names appear in the results. PyQt5 slots appear in the results with the prefix `[SLOT]`.
+The profiler doesn't capture every function call in Cura. It hooks into a number of important systems which give a good picture of activity without too much run time overhead. The most important system is Uranium's signal mechanism and PyQt5 slots. Functions which are called via the signal mechanism are recorded and their names appear in the results. PyQt5 slots appear in the results with the prefix `[SLOT]`.
Note that not all slots are captured. Only those slots which belong to classes which use the `pyqtSlot` decorator from the `UM.FlameProfiler` module.