Skip to content

Commit a34ea92

Browse files
committed
policheck term update
1 parent 962a7ec commit a34ea92

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/c-runtime-library/to-functions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ The `towlower` and `towupper` functions return a converted copy of `c` if and on
6464
#include <ctype.h>
6565
#include <string.h>
6666

67-
char msg[] = "Some of THESE letters are Capitals.";
67+
char msg[] = "Some of THESE letters are Uppercase.";
6868
char *p;
6969

7070
int main( void )
@@ -85,8 +85,8 @@ int main( void )
8585
```
8686
8787
```Output
88-
Some of THESE letters are Capitals.
89-
sOME OF these LETTERS ARE cAPITALS.
88+
Some of THESE letters are Uppercase.
89+
sOME OF these LETTERS ARE uPPERCASE.
9090
```
9191

9292
## See also

docs/mfc/reference/cmfctoolbar-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ virtual CSize CalcFixedLayout(
464464
[in] `TRUE` to stretch the toolbar to the size of the parent frame.
465465

466466
*`bHorz`*\
467-
[in] `TRUE` to orient the toolbar horizontally; `FALSE` to orient the toolbar vertically.
467+
[in] `TRUE` to adjust the toolbar horizontally; `FALSE` to adjust the toolbar vertically.
468468

469469
### Return Value
470470

docs/mfc/styles-for-the-progress-control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ When you initially create the progress control ([CProgressCtrl::Create](../mfc/r
2121

2222
In addition, you can specify two styles that apply only to the progress control, PBS_VERTICAL and PBS_SMOOTH.
2323

24-
Use PBS_VERTICAL to orient the control vertically, rather than horizontally. Use PBS_SMOOTH to fill the control completely, rather than displaying small delineated squares that fill the control incrementally.
24+
Use PBS_VERTICAL to adjust the control vertically, rather than horizontally. Use PBS_SMOOTH to fill the control completely, rather than displaying small delineated squares that fill the control incrementally.
2525

2626
Without PBS_SMOOTH style:
2727

0 commit comments

Comments
 (0)