aboutsummaryrefslogtreecommitdiffstats
path: root/doc/qtcreator/src/debugger/creator-only/creator-debugger.qdoc
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2023-02-03 17:25:21 +0100
committerLeena Miettinen <riitta-leena.miettinen@qt.io>2023-02-06 11:09:29 +0000
commit738819ec71261009e650ae378ffcafe7512841ce (patch)
tree972e7a9a75e9dec255b23788fb6e0297f5852bb0 /doc/qtcreator/src/debugger/creator-only/creator-debugger.qdoc
parent33badfa660f57fe62547f9c609d58088c2165280 (diff)
Doc: Replace "provide" with something simpler
This follows the ComplexWords rule in vale. Change-Id: I99d8e5dc3ee4736a254064b6ef00166419fccee8 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Venugopal Shivashankar <Venugopal.Shivashankar@qt.io>
Diffstat (limited to 'doc/qtcreator/src/debugger/creator-only/creator-debugger.qdoc')
-rw-r--r--doc/qtcreator/src/debugger/creator-only/creator-debugger.qdoc21
1 files changed, 10 insertions, 11 deletions
diff --git a/doc/qtcreator/src/debugger/creator-only/creator-debugger.qdoc b/doc/qtcreator/src/debugger/creator-only/creator-debugger.qdoc
index 74ffd9c09a..163981b3a5 100644
--- a/doc/qtcreator/src/debugger/creator-only/creator-debugger.qdoc
+++ b/doc/qtcreator/src/debugger/creator-only/creator-debugger.qdoc
@@ -14,7 +14,7 @@
\title Debugging
- \QC provides a debugger plugin that acts as an interface between the \QC
+ \QC has a debugger plugin that acts as an interface between the \QC
core and external native debuggers such as the GNU Symbolic Debugger (GDB),
the Microsoft Console Debugger (CDB), a QML/JavaScript debugger, and the
debugger of the low level virtual machine (LLVM) project, LLDB.
@@ -325,8 +325,7 @@
\section1 Remote Debugging
- \QC provides very easy access to remote debugging.
-
+ \QC makes remote debugging easy.
In general, the remote debugging setup consist of a probe running on the
remote machine and a counterpart running on the host side. The probe is
either integrated into the running process (e.g. for QML debugging) or runs
@@ -533,11 +532,11 @@
\endlist
- \QC displays the raw information provided by the native debuggers in a clear
+ \QC displays the raw information from the native debuggers in a clear
and concise manner with the goal to simplify the debugging process as much
as possible without losing the power of the native debuggers.
- In addition to the generic IDE functionality provided by stack view, views
+ In addition to the generic IDE functionality offered by stack view, views
for locals and expressions, registers, and so on, \QC includes features to
make debugging Qt-based applications easy. The debugger plugin understands
the internal layout of several Qt classes, for example, QString, the Qt
@@ -627,7 +626,7 @@
into one step for less noisy debugging. For more information, see
\l{Specifying GDB Settings}.
- The extended GDB settings provide the option to step backwards in code,
+ The extended GDB settings have the option to step backwards in code,
but this option should be used with care, as it is slow and unstable on the
GDB side. For more information, see \l{Specifying GDB Settings}.
@@ -665,8 +664,8 @@
the bottom of the view. Output is displayed in the right pane of the
\uicontrol {Debugger Log} view.
- \note Usually, you do not need this feature because \QC provides you
- with better ways to handle the task. For example, instead of using the GDB
+ \note Usually, you do not need this feature because \QC offers better ways to
+ handle the task. For example, instead of using the GDB
\c print command from the command line, you can evaluate an expression in
the \uicontrol {Expressions} view.
@@ -1093,9 +1092,9 @@
As the format is not guaranteed to be stable, it is strongly recommended
not to generate the wire format directly, but to use the abstraction
- layer provided by the Python Dumper classes, specifically the \c{Dumper}
+ layer of the Python Dumper classes, specifically the \c{Dumper}
class itself, and the \c{Dumper:Value} and \c{Dumper:Type} abstractions.
- These provide a complete framework to take care of the \c iname and \c addr
+ These offer a complete framework to take care of the \c iname and \c addr
fields, to handle children of simple types, references, pointers, enums, and
known and unknown structs, as well as some convenience functions to handle
common situations.
@@ -1287,7 +1286,7 @@
built into or shipped alongside the debugged binary, or created on-the-fly
by the debugging helper.
- \QC uses the possibility to provide type information on-the-fly for most Qt
+ \QC offers type information on-the-fly for most Qt
classes, obliterating the need to use \e Debug builds of Qt for the purpose
of object introspection.