Skip to content

Commit 6d62e38

Browse files
author
msebolt
committed
fixes
1 parent 5b6b2ea commit 6d62e38

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/mfc/reference/cdocument-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ A string that is the path to the desired file. The path may be relative or absol
313313
A pointer to an existing file-exception object that indicates the completion status of the operation.
314314
315315
*`nOpenFlags`*<br/>
316-
Sharing and access mode. Specifies the action to take when opening the file. You can combine options listed in the CFile constructor [`CFile::CFile`](../../mfc/reference/cfile-class.md#cfile) by using the bitwise `OR` (`|`) operator. One access permission and one share option are required; the `modeCreate` and `modeNoInherit` modes are optional.
316+
Sharing and access mode. Specifies the action to take when opening the file. You can combine options listed in the CFile constructor [`CFile::CFile`](../../mfc/reference/cfile-class.md#cfile) by using the bitwise OR (`|`) operator. One access permission and one share option are required; the `modeCreate` and `modeNoInherit` modes are optional.
317317
318318
### Return Value
319319

docs/mfc/reference/cfilefind-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ virtual BOOL MatchesMask(DWORD dwMask) const;
747747
### Parameters
748748

749749
*`dwMask`*<br/>
750-
Specifies one or more file attributes, identified in the [`WIN32_FIND_DATA`](/windows/win32/api/minwinbase/ns-minwinbase-win32_find_dataw) structure, for the found file. To search for multiple attributes, use the bitwise `OR` (`|`) operator. Any combination of the following attributes is acceptable:
750+
Specifies one or more file attributes, identified in the [`WIN32_FIND_DATA`](/windows/win32/api/minwinbase/ns-minwinbase-win32_find_dataw) structure, for the found file. To search for multiple attributes, use the bitwise OR (`|`) operator. Any combination of the following attributes is acceptable:
751751

752752
- `FILE_ATTRIBUTE_ARCHIVE` The file is an archive file. Applications use this attribute to mark files for backup or removal.
753753

docs/mfc/reference/cfont-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Specifies the desired clipping precision. The clipping precision defines how to
142142

143143
To use an embedded read-only font, an application must specify `CLIP_ENCAPSULATE`.
144144

145-
To achieve consistent rotation of device, TrueType, and vector fonts, an application can use the `OR` operator to combine the `CLIP_LH_ANGLES` value with any of the other *`nClipPrecision`* values. If the `CLIP_LH_ANGLES` bit is set, the rotation for all fonts depends on whether the orientation of the coordinate system is left-handed or right-handed. (For more information about the orientation of coordinate systems, see the description of the *`nOrientation`* parameter.) If `CLIP_LH_ANGLES` is not set, device fonts always rotate counterclockwise, but the rotation of other fonts is dependent on the orientation of the coordinate system.
145+
To achieve consistent rotation of device, TrueType, and vector fonts, an application can use the bitwise OR operator (`|`) to combine the `CLIP_LH_ANGLES` value with any of the other *`nClipPrecision`* values. If the `CLIP_LH_ANGLES` bit is set, the rotation for all fonts depends on whether the orientation of the coordinate system is left-handed or right-handed. (For more information about the orientation of coordinate systems, see the description of the *`nOrientation`* parameter.) If `CLIP_LH_ANGLES` is not set, device fonts always rotate counterclockwise, but the rotation of other fonts is dependent on the orientation of the coordinate system.
146146

147147
*`nQuality`*<br/>
148148
Specifies the font's output quality, which defines how carefully the GDI must attempt to match the logical-font attributes to those of an actual physical font. See the `lfQuality` member in the `LOGFONT` structure in the Windows SDK for a list of values.

docs/mfc/reference/cobarray-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class CObArray : public CObject
5050
5151
|Name|Description|
5252
|----------|-----------------|
53-
|[`CObArray::operator [ ]`](#operator_at)|Sets or gets the element at the specified index.|
53+
|[`CObArray::operator []`](#operator_at)|Sets or gets the element at the specified index.|
5454
5555
## Remarks
5656

0 commit comments

Comments
 (0)