@@ -42,8 +42,8 @@ namespace lldb_private {
42
42
// / uint64_t total,
43
43
// / void *baton);
44
44
// /
45
- // / This callback will always initially be called with " completed" set to zero
46
- // / and " total" set to the total amount specified in the contructor . This is
45
+ // / This callback will always initially be called with \a completed set to zero
46
+ // / and \a total set to the total amount specified in the constructor . This is
47
47
// / considered the progress start event. As Progress::Increment() is called,
48
48
// / the callback will be called as long as the Progress::m_completed has not
49
49
// / yet exceeded the Progress::m_total. When the callback is called with
@@ -52,7 +52,7 @@ namespace lldb_private {
52
52
// / Progress::m_total, then this is considered a progress update event.
53
53
// /
54
54
// / This callback will be called in the destructor if Progress::m_completed is
55
- // / not equal to Progress::m_total with the " completed" set to
55
+ // / not equal to Progress::m_total with the \a completed set to
56
56
// / Progress::m_total. This ensures we always send a progress completed update
57
57
// / even if the user does not.
58
58
@@ -62,7 +62,7 @@ class Progress {
62
62
// /
63
63
// / The constructor will create a unique progress reporting object and
64
64
// / immediately send out a progress update by calling the installed callback
65
- // / with completed set to zero out of the specified total.
65
+ // / with \a completed set to zero out of the specified total.
66
66
// /
67
67
// / @param [in] title The title of this progress activity.
68
68
// /
@@ -86,11 +86,11 @@ class Progress {
86
86
// / Destroy the progress object.
87
87
// /
88
88
// / If the progress has not yet sent a completion update, the destructor
89
- // / will send out a notification where the completed == m_total. This ensures
90
- // / that we always send out a progress complete notification.
89
+ // / will send out a notification where the \a completed == m_total. This
90
+ // / ensures that we always send out a progress complete notification.
91
91
~Progress ();
92
92
93
- // / Increment the progress and send a notification to the intalled callback.
93
+ // / Increment the progress and send a notification to the installed callback.
94
94
// /
95
95
// / If incrementing ends up exceeding m_total, m_completed will be updated
96
96
// / to match m_total and no subsequent progress notifications will be sent.
0 commit comments