Skip to content

Commit c8ed2ae

Browse files
authored
Merge pull request #3512 from corob-msft/docs/corob/bad-ticks-part-1-of-n
Bulk Fix: busted ticks.
2 parents 00e9d2b + e681115 commit c8ed2ae

File tree

12 files changed

+24
-24
lines changed

12 files changed

+24
-24
lines changed

docs/atl/reference/ccombstr-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class CComBSTR
5353
|Name|Description|
5454
|----------|-----------------|
5555
|[CComBSTR::operator BSTR](#operator_bstr)|Casts a `CComBSTR` object to a BSTR.|
56-
|[CComBSTR::operator !](#operator_not)|Returns TRUE or FALSE, depending on whether `m_str`is NULL.|
56+
|[CComBSTR::operator !](#operator_not)|Returns TRUE or FALSE, depending on whether `m_str` is NULL.|
5757
|[CComBSTR::operator !=](#operator_neq)|Compares a `CComBSTR` with a string.|
5858
|[CComBSTR::operator &](#operator_amp)|Returns the address of `m_str`.|
5959
|[CComBSTR::operator +=](#operator_add_eq)|Appends a `CComBSTR` to the object.|

docs/build/reference/sourcedependencies-directives.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This command-line option is similar to [`/sourceDependencies`](sourcedependencie
1919
- The output JSON file doesn't list imported modules and imported header units (*`.ifc`* files) because this switch does a scan of the project files, not a compilation. So there are no built modules or header units to list.
2020
- Only directly imported modules or header units are listed. It doesn't list the dependencies of the imported modules or header units themselves.
2121
- Header file dependencies are not listed. That is, `#include <file>` or `#include "file"` dependencies are not listed.
22-
- `/sourceDependencies:directives`is meant to be used before *`.ifc`* files are built.
22+
- `/sourceDependencies:directives` is meant to be used before *`.ifc`* files are built.
2323

2424
## Syntax
2525

docs/c-runtime-library/reference/exp-expf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,5 @@ exp( 2.302585 ) = 10.000000
9393
## See also
9494
9595
[Floating-Point Support](../../c-runtime-library/floating-point-support.md)\
96-
[l`og, logf, log10, log10f`](log-logf-log10-log10f.md)\
97-
[`_CIexp`](../../c-runtime-library/ciexp.md)
96+
[`log, logf, log10, log10f`](log-logf-log10-log10f.md)\
97+
[`_CIexp`](../../c-runtime-library/ciexp.md)

docs/c-runtime-library/reference/fmod-fmodf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,5 +95,5 @@ The remainder of -10.00 / 3.00 is -1.000000
9595
[Floating-Point Support](../../c-runtime-library/floating-point-support.md)\
9696
[`ceil, ceilf, ceill`](ceil-ceilf-ceill.md)\
9797
[`fabs, fabsf, fabsl`](fabs-fabsf-fabsl.md)\
98-
[f`loor, floorf, floorl`](floor-floorf-floorl.md)\
99-
[`_CIfmod`](../../c-runtime-library/cifmod.md)
98+
[`floor, floorf, floorl`](floor-floorf-floorl.md)\
99+
[`_CIfmod`](../../c-runtime-library/cifmod.md)

docs/c-runtime-library/reference/freopen-s-wfreopen-s.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ An out parameter that will point to the reopened stream when the function return
4141
*`fileName`*\
4242
Path of the file to reopen.
4343

44-
*` mode`*\
44+
*`mode`*\
4545
The mode for the reopened stream.
4646

4747
*`oldStream`*\
@@ -57,9 +57,9 @@ For more information about error codes, see [`errno, _doserrno, _sys_errlist, an
5757

5858
The **`freopen_s`** function is typically used to attach the pre-opened streams associated with `stdin`, `stdout` and `stderr` to another file.
5959

60-
The **`freopen_s`** function closes the file currently associated with *`stream`* and reassigns *`stream`* to the file specified by *path*. **`_wfreopen_s`** is a wide-character version of **`freopen_s`**; the *path* and *` mode`* arguments to **`_wfreopen_s`** are wide-character strings. **`_wfreopen_s`** and **`freopen_s`** behave identically otherwise.
60+
The **`freopen_s`** function closes the file currently associated with *`stream`* and reassigns *`stream`* to the file specified by *path*. **`_wfreopen_s`** is a wide-character version of **`freopen_s`**; the *path* and *`mode`* arguments to **`_wfreopen_s`** are wide-character strings. **`_wfreopen_s`** and **`freopen_s`** behave identically otherwise.
6161

62-
If any of *pFile*, *path*, *` mode`*, or *`stream`* are **`NULL`**, or if *path* is an empty string, these functions invoke the invalid parameter handler, as described in [Parameter Validation](../../c-runtime-library/parameter-validation.md). If execution is allowed to continue, these functions set **`errno`** to **`EINVAL`** and return **`EINVAL`**.
62+
If any of *pFile*, *path*, *`mode`*, or *`stream`* are **`NULL`**, or if *path* is an empty string, these functions invoke the invalid parameter handler, as described in [Parameter Validation](../../c-runtime-library/parameter-validation.md). If execution is allowed to continue, these functions set **`errno`** to **`EINVAL`** and return **`EINVAL`**.
6363

6464
By default, this function's global state is scoped to the application. To change this, see [Global state in the CRT](../global-state.md).
6565

@@ -69,9 +69,9 @@ By default, this function's global state is scoped to the application. To change
6969
|---------------------|------------------------------------|--------------------|-----------------------|
7070
|**`_tfreopen_s`**|**`freopen_s`**|**`freopen_s`**|**`_wfreopen_s`**|
7171

72-
**`freopen_s`** is typically used to redirect the pre-opened files **`stdin`**, **`stdout`**, and **`stderr`** to files specified by the user. The new file associated with *`stream`* is opened with *` mode`*, which is a character string specifying the type of access requested for the file, as follows:
72+
**`freopen_s`** is typically used to redirect the pre-opened files **`stdin`**, **`stdout`**, and **`stderr`** to files specified by the user. The new file associated with *`stream`* is opened with *`mode`*, which is a character string specifying the type of access requested for the file, as follows:
7373

74-
|*` mode`*|Access|
74+
|*`mode`*|Access|
7575
|-|-|
7676
| **`"r"`** | Opens for reading. If the file doesn't exist or cannot be found, the **`freopen_s`** call fails. |
7777
| **`"w"`** | Opens an empty file for writing. If the given file exists, its contents are destroyed. |
@@ -86,16 +86,16 @@ When a file is opened with the **`"a"`** or **`"a+"`** access type, all write op
8686

8787
The **`"a"`** mode doesn't remove the EOF marker before appending to the file. After appending has occurred, the MS-DOS TYPE command only shows data up to the original EOF marker and not any data appended to the file. The **`"a+"`** mode does remove the EOF marker before appending to the file. After appending, the MS-DOS TYPE command shows all data in the file. The **`"a+"`** mode is required for appending to a stream file that is terminated with the CTRL+Z EOF marker.
8888

89-
When the **`"r+"`**, **`"w+"`**, or **`"a+"`** access type is specified, both reading and writing are allowed (the file is said to be open for "update"). However, when you switch between reading and writing, there must be an intervening [`fsetpos`](fsetpos.md), [`fseek`](fseek-fseeki64.md), or [`rewind`](rewind.md) operation. The current position can be specified for the [`fsetpos`](fsetpos.md) or [`fseek`](fseek-fseeki64.md) operation, if you want. In addition to the above values, one of the following characters may be included in the *` mode`* string to specify the translation mode for new lines.
89+
When the **`"r+"`**, **`"w+"`**, or **`"a+"`** access type is specified, both reading and writing are allowed (the file is said to be open for "update"). However, when you switch between reading and writing, there must be an intervening [`fsetpos`](fsetpos.md), [`fseek`](fseek-fseeki64.md), or [`rewind`](rewind.md) operation. The current position can be specified for the [`fsetpos`](fsetpos.md) or [`fseek`](fseek-fseeki64.md) operation, if you want. In addition to the above values, one of the following characters may be included in the *`mode`* string to specify the translation mode for new lines.
9090

91-
|*` mode`* modifier|Translation mode|
91+
|*`mode`* modifier|Translation mode|
9292
|-|-|
9393
| **`t`** | Open in text (translated) mode. |
9494
| **`b`** | Open in binary (untranslated) mode; translations involving carriage-return and line feed characters are suppressed. |
9595

9696
In text (translated) mode, carriage return-line feed (CR-LF) combinations are translated into single line feed (LF) characters on input; LF characters are translated to CR-LF combinations on output. Also, CTRL+Z is interpreted as an end-of-file character on input. In files opened for reading or for writing and reading with **`"a+"`**, the run-time library checks for a CTRL+Z at the end of the file and removes it, if possible. This is done because using [`fseek`](fseek-fseeki64.md) and [`ftell`](ftell-ftelli64.md) to move within a file may cause [`fseek`](fseek-fseeki64.md) to behave improperly near the end of the file. Don't use the **`t`** option when you want ANSI portability because it's a Microsoft extension.
9797

98-
If **`t`** or **`b`** isn't given in *` mode`*, the default translation mode is defined by the global variable [`_fmode`](../../c-runtime-library/fmode.md). If **`t`** or **`b`** is prefixed to the argument, the function fails and returns **`NULL`**.
98+
If **`t`** or **`b`** isn't given in *`mode`*, the default translation mode is defined by the global variable [`_fmode`](../../c-runtime-library/fmode.md). If **`t`** or **`b`** is prefixed to the argument, the function fails and returns **`NULL`**.
9999

100100
For a discussion of text and binary modes, see [Text and Binary Mode File I/O](../../c-runtime-library/text-and-binary-mode-file-i-o.md).
101101

@@ -106,7 +106,7 @@ For a discussion of text and binary modes, see [Text and Binary Mode File I/O](.
106106
|**`freopen_s`**|`<stdio.h>`|
107107
|**`_wfreopen_s`**|`<stdio.h>` or `<wchar.h>`|
108108

109-
The console isn't supported in Universal Windows Platform (UWP) apps. The standard stream handles that are associated with the console, **`stdin`**, **`stdout`**, and **`stderr`**, must be redirected before C run-time functions can use them in UWP apps.
109+
The console isn't supported in Universal Windows Platform (UWP) apps. The standard stream handles that are associated with the console, **`stdin`**, **`stdout`**, and **`stderr`**, must be redirected before C run-time functions can use them in UWP apps.
110110

111111
For more compatibility information, see [Compatibility](../../c-runtime-library/compatibility.md).
112112

@@ -153,6 +153,6 @@ This will go to the file 'freopen.out'
153153
[`fclose, _fcloseall`](fclose-fcloseall.md)\
154154
[`_fdopen, _wfdopen`](fdopen-wfdopen.md)\
155155
[`_fileno`](fileno.md)\
156-
[`fopen, _wfope`n](fopen-wfopen.md)\
156+
[`fopen, _wfopen`](fopen-wfopen.md)\
157157
[`_open, _wopen`](open-wopen.md)\
158158
[`_setmode`](setmode.md)

docs/code-quality/c6273.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This warning indicates that the format string specifies an integer, for example,
1515

1616
## Example
1717

18-
The following code generates this warning because an integer is required instead of a **`float`** to `sprintf` function:
18+
The following code generates this warning because an integer is required instead of a **`float`** in the `sprintf` function:
1919

2020
```cpp
2121
#include <stdio.h>
@@ -64,4 +64,4 @@ This warning is not applicable on Windows 9x and Windows NT version 4 because %p
6464

6565
## See also
6666

67-
[sprintf, _sprintf_l, swprintf, _swprintf_l, \__swprintf_l](../c-runtime-library/reference/sprintf-sprintf-l-swprintf-swprintf-l-swprintf-l.md)
67+
[`sprintf, _sprintf_l, swprintf, _swprintf_l, __swprintf_l`](../c-runtime-library/reference/sprintf-sprintf-l-swprintf-swprintf-l-swprintf-l.md)

docs/cppcx/namespaces-reference-c-cx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To simplify the coding of programs that target the Windows Runtime, the C++/CX c
1919
|-----------|-----------------|
2020
|[default namespace](../cppcx/default-namespace.md)|Contains descriptions of built-in, fundamental types.|
2121
|[Platform namespace](../cppcx/platform-namespace-c-cx.md)|Contains descriptions of types that you can use, and also internal types that are used only by the compiler infrastructure.|
22-
|[Windows::Foundation::Collections Namespace](../cppcx/windows-foundation-collections-namespace-c-cx.md)|Contains descriptions of enhancements and extensions to the Windows Runtime`Windows::Foundation::Collections` namespace.|
22+
|[Windows::Foundation::Collections Namespace](../cppcx/windows-foundation-collections-namespace-c-cx.md)|Contains descriptions of enhancements and extensions to the Windows Runtime `Windows::Foundation::Collections` namespace.|
2323

2424
## See also
2525

docs/cppcx/platform-collections-vectorviewiterator-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.assetid: be3aa1ae-e6ba-4a06-8d6b-86d8128026f7
99
---
1010
# Platform::Collections::VectorViewIterator Class
1111

12-
Provides a Standard Template Library iterator for objects derived from the Windows Runtime`IVectorView` interface.
12+
Provides a Standard Template Library iterator for objects derived from the Windows Runtime `IVectorView` interface.
1313

1414
`ViewVectorIterator` is a proxy iterator that stores elements of type `VectorProxy<T>`. However, the proxy object is almost never visible to user code. For more information, see [Collections (C++/CX)](../cppcx/collections-c-cx.md).
1515

docs/cppcx/ref-classes-and-structs-c-cx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ A ref class or ref struct has these essential features:
2424

2525
## Declaration
2626

27-
The following code fragment declares the `Person` ref class. Notice that the standard C++ `std::map` type is used in the private members, and the Windows Runtime`IMapView` interface is used in the public interface. Also notice that the "^" is appended to declarations of reference types.
27+
The following code fragment declares the `Person` ref class. Notice that the standard C++ `std::map` type is used in the private members, and the Windows Runtime `IMapView` interface is used in the public interface. Also notice that the "^" is appended to declarations of reference types.
2828

2929
[!code-cpp[cx_classes#03](../cppcx/codesnippet/CPP/classesstructs/class1.h#03)]
3030

docs/mfc/reference/cdbexception-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ This type includes SQL-prefixed codes defined by ODBC and AFX_SQL-prefixed codes
6161

6262
- AFX_SQL_ERROR_API_CONFORMANCE The driver for a `CDatabase::OpenEx` or `CDatabase::Open` call does not conform to required ODBC API Conformance level 1 ( SQL_OAC_LEVEL1).
6363

64-
- AFX_SQL_ERROR_CONNECT_FAIL Connection to the data source failed. You passed a NULL`CDatabase` pointer to your recordset constructor and the subsequent attempt to create a connection based on `GetDefaultConnect` failed.
64+
- AFX_SQL_ERROR_CONNECT_FAIL Connection to the data source failed. You passed a NULL `CDatabase` pointer to your recordset constructor and the subsequent attempt to create a connection based on `GetDefaultConnect` failed.
6565

6666
- AFX_SQL_ERROR_DATA_TRUNCATED You requested more data than you have provided storage for. For information on increasing the provided data storage for `CString` or `CByteArray` data types, see the `nMaxLength` argument for [RFX_Text](record-field-exchange-functions.md#rfx_text) and [RFX_Binary](record-field-exchange-functions.md#rfx_binary) under "Macros and Globals."
6767

0 commit comments

Comments
 (0)