Skip to content

Commit a5fdcd3

Browse files
committed
Bulk fix of issues LOC is seing with asterisks
1 parent 5a6ec6f commit a5fdcd3

71 files changed

Lines changed: 279 additions & 279 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/t-sql/data-types/float-and-real-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Approximate-number data types for use with floating point numeric data. Floating
3636
![Topic link icon](../../database-engine/configure-windows/media/topic-link.gif "Topic link icon") [Transact-SQL Syntax Conventions](../../t-sql/language-elements/transact-sql-syntax-conventions-transact-sql.md)
3737

3838
## Syntax
39-
**float** [ **(***n***)** ]
39+
**float** [ **(**_n_**)** ]
4040
Where *n* is the number of bits that are used to store the mantissa of the **float** number in scientific notation and, therefore, dictates the precision and storage size. If *n* is specified, it must be a value between **1** and **53**. The default value of *n* is **53**.
4141

4242
|*n* value|Precision|Storage size|

docs/t-sql/functions/avg-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Specifies that AVG operates only on one unique instance of each value, regardles
5151
*expression*
5252
An [expression](../../t-sql/language-elements/expressions-transact-sql.md) of the exact numeric or approximate numeric data type category, except for the **bit** data type. Aggregate functions and subqueries are not permitted.
5353

54-
OVER **(** [ *partition_by_clause* ] *order_by_clause***)**
54+
OVER **(** [ *partition_by_clause* ] _order\_by\_clause_**)**
5555
*partition_by_clause* divides the result set produced by the FROM clause into partitions to which the function is applied. If not specified, the function treats all rows of the query result set as a single group. The *order_by_clause* determines the logical order in which the operation is performed. The *order_by_clause* is required. For more information, see [OVER Clause (Transact-SQL)](../../t-sql/queries/select-over-clause-transact-sql.md).
5656

5757
## Return types

docs/t-sql/functions/datepart-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ This table lists all *datepart* arguments, with corresponding return values, for
116116
## Week and weekday datepart arguments
117117
For a **week** (**wk**, **ww**) or **weekday** (**dw**) *datepart*, the `DATEPART` return value depends on the value set by [SET DATEFIRST](../../t-sql/statements/set-datefirst-transact-sql.md).
118118

119-
January 1 of any year defines the starting number for the **week***datepart*. For example:
119+
January 1 of any year defines the starting number for the **week**_datepart_. For example:
120120

121121
DATEPART (**wk**, 'Jan 1, *xxx*x') = 1
122122

docs/t-sql/functions/decompress-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ DECOMPRESS ( expression )
3535

3636
## Arguments
3737
*expression*
38-
A **varbinary(***n***)**, **varbinary(max)**, or **binary(***n***)** value. See [Expressions (Transact-SQL)](../../t-sql/language-elements/expressions-transact-sql.md) for more information.
38+
A **varbinary(**_n_**)**, **varbinary(max)**, or **binary(**_n_**)** value. See [Expressions (Transact-SQL)](../../t-sql/language-elements/expressions-transact-sql.md) for more information.
3939

4040
## Return Types
4141
A value of data type **varbinary(max)**. `DECOMPRESS` will use the ZIP algorithm to decompress the input argument. The user should explicitly cast result to a target type if necessary.

docs/t-sql/functions/json-value-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ JSON_VALUE ( expression , path )
4141
*expression*
4242
An expression. Typically the name of a variable or a column that contains JSON text.
4343

44-
If **JSON_VALUE** finds JSON that is not valid in *expression* before it finds the value identified by *path*, the function returns an error. If **JSON_VALUE* doesn't find the value identified by *path*, it scans the entire text and returns an error if it finds JSON that is not valid anywhere in *expression*.
44+
If **JSON_VALUE** finds JSON that is not valid in *expression* before it finds the value identified by *path*, the function returns an error. If **JSON_VALUE** doesn't find the value identified by *path*, it scans the entire text and returns an error if it finds JSON that is not valid anywhere in *expression*.
4545

4646
*path*
4747
A JSON path that specifies the property to extract. For more info, see [JSON Path Expressions (SQL Server)](../../relational-databases/json/json-path-expressions-sql-server.md).

docs/t-sql/functions/lag-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ LAG (scalar_expression [,offset] [,default])
4848
*default*
4949
The value to return when *scalar_expression* at *offset* is NULL. If a default value is not specified, NULL is returned. *default* can be a column, subquery, or other expression, but it cannot be an analytic function. *default* must be type-compatible with *scalar_expression*.
5050

51-
OVER **(** [ *partition_by_clause* ] *order_by_clause***)**
51+
OVER **(** [ _partition\_by\_clause_ ] _order\_by\_clause_**)**
5252
*partition_by_clause* divides the result set produced by the FROM clause into partitions to which the function is applied. If not specified, the function treats all rows of the query result set as a single group. *order_by_clause* determines the order of the data before the function is applied. If *partition_by_clause* is specified, it determines the order of the data in the partition. The *order_by_clause* is required. For more information, see [OVER Clause (Transact-SQL)](../../t-sql/queries/select-over-clause-transact-sql.md).
5353

5454
## Return Types

docs/t-sql/functions/lead-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ LEAD ( scalar_expression [ ,offset ] , [ default ] )
4848
*default*
4949
The value to return when *scalar_expression* at *offset* is NULL. If a default value is not specified, NULL is returned. *default* can be a column, subquery, or other expression, but it cannot be an analytic function. *default* must be type-compatible with *scalar_expression*.
5050

51-
OVER **(** [ *partition_by_clause* ] *order_by_clause***)**
51+
OVER **(** [ _partition\_by\_clause_ ] _order\_by\_clause_**)**
5252
*partition_by_clause* divides the result set produced by the FROM clause into partitions to which the function is applied. If not specified, the function treats all rows of the query result set as a single group. *order_by_clause* determines the order of the data before the function is applied. When *partition_by_clause* is specified, it determines the order of the data in each partition. The *order_by_clause* is required. For more information, see [OVER Clause (Transact-SQL)](../../t-sql/queries/select-over-clause-transact-sql.md).
5353

5454
## Return Types

docs/t-sql/functions/max-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ MAX ( [ ALL | DISTINCT ] expression )
5151

5252
For more information, see [Expressions (Transact-SQL)](../../t-sql/language-elements/expressions-transact-sql.md).
5353

54-
OVER **(** [ *partition_by_clause* ] *order_by_clause***)**
54+
OVER **(** [ _partition\_by\_clause_ ] _order\_by\_clause_**)**
5555
*partition_by_clause* divides the result set produced by the FROM clause into partitions to which the function is applied. If not specified, the function treats all rows of the query result set as a single group. *order_by_clause* determines the logical order in which the operation is performed. *order_by_clause* is required. For more information, see [OVER Clause (Transact-SQL)](../../t-sql/queries/select-over-clause-transact-sql.md).
5656

5757
## Return Types

docs/t-sql/functions/min-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ MIN ( expression ) OVER ( [ <partition_by_clause> ] [ <order_by_clause> ] )
6363

6464
For more information, see [Expressions &#40;Transact-SQL&#41;](../../t-sql/language-elements/expressions-transact-sql.md).
6565

66-
OVER **(** [ *partition_by_clause* ] *order_by_clause***)**
66+
OVER **(** [ _partition\_by\_clause_ ] _order\_by\_clause_**)**
6767
*partition_by_clause* divides the result set produced by the FROM clause into partitions to which the function is applied. If not specified, the function treats all rows of the query result set as a single group. *order_by_clause* determines the logical order in which the operation is performed. *order_by_clause* is required. For more information, see [OVER Clause &#40;Transact-SQL&#41;](../../t-sql/queries/select-over-clause-transact-sql.md).
6868

6969
## Return Types

docs/t-sql/functions/opendatasource-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ OPENDATASOURCE ( provider_name, init_string )
4747
Is the name registered as the PROGID of the OLE DB provider used to access the data source. *provider_name* is a **char** data type, with no default value.
4848

4949
*init_string*
50-
Is the connection string passed to the IDataInitialize interface of the destination provider. The provider string syntax is based on keyword-value pairs separated by semicolons, such as: **'***keyword1*=*value***;***keyword2*=*value***'**.
50+
Is the connection string passed to the IDataInitialize interface of the destination provider. The provider string syntax is based on keyword-value pairs separated by semicolons, such as: **'**_keyword1_=_value_**;***keyword2*=*value***'**.
5151

5252
For specific keyword-value pairs supported on the provider, see the [!INCLUDE[msCoName](../../includes/msconame-md.md)] Data Access SDK. This documentation defines the basic syntax. The following table lists the most frequently used keywords in the *init_string* argument.
5353

0 commit comments

Comments
 (0)