Skip to content

Commit 25e9a75

Browse files
authored
code fence into when used as a keyword (dotnet#44563)
Fixes dotnet#44559 There were a few instances of "into" that weren't code-fenced when it was used as a keyword, `into`. That meant the keyword was localized, which is incorrect.
1 parent 68dd7b6 commit 25e9a75

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/csharp/linq/get-started/query-expression-basics.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ In the previous example, the query is executed in the call to `Count`, because `
4545

4646
A *query expression* is a query expressed in query syntax. A query expression is a first-class language construct. It's just like any other expression and can be used in any context in which a C# expression is valid. A query expression consists of a set of clauses written in a declarative syntax similar to SQL or XQuery. Each clause in turn contains one or more C# expressions, and these expressions might themselves be either a query expression or contain a query expression.
4747

48-
A query expression must begin with a [from](../../language-reference/keywords/from-clause.md) clause and must end with a [select](../../language-reference/keywords/select-clause.md) or [group](../../language-reference/keywords/group-clause.md) clause. Between the first `from` clause and the last `select` or `group` clause, it can contain one or more of these optional clauses: [where](../../language-reference/keywords/where-clause.md), [orderby](../../language-reference/keywords/orderby-clause.md), [join](../../language-reference/keywords/join-clause.md), [let](../../language-reference/keywords/let-clause.md) and even another [from](../../language-reference/keywords/from-clause.md) clauses. You can also use the [into](../../language-reference/keywords/into.md) keyword to enable the result of a `join` or `group` clause to serve as the source for more query clauses in the same query expression.
48+
A query expression must begin with a [from](../../language-reference/keywords/from-clause.md) clause and must end with a [select](../../language-reference/keywords/select-clause.md) or [group](../../language-reference/keywords/group-clause.md) clause. Between the first `from` clause and the last `select` or `group` clause, it can contain one or more of these optional clauses: [where](../../language-reference/keywords/where-clause.md), [orderby](../../language-reference/keywords/orderby-clause.md), [join](../../language-reference/keywords/join-clause.md), [let](../../language-reference/keywords/let-clause.md) and even another [from](../../language-reference/keywords/from-clause.md) clauses. You can also use the [`into`](../../language-reference/keywords/into.md) keyword to enable the result of a `join` or `group` clause to serve as the source for more query clauses in the same query expression.
4949

5050
### Query variable
5151

@@ -128,7 +128,7 @@ You can use the `into` keyword in a `select` or `group` clause to create a tempo
128128

129129
:::code language="csharp" source="./snippets/SnippetApp/Basics.cs" id="basics14":::
130130

131-
For more information, see [into](../../language-reference/keywords/into.md).
131+
For more information, see [`into`](../../language-reference/keywords/into.md).
132132

133133
### Filtering, ordering, and joining
134134

@@ -156,7 +156,7 @@ Use the `join` clause to associate and/or combine elements from one data source
156156

157157
:::code language="csharp" source="./snippets/SnippetApp/Basics.cs" id="basics17":::
158158

159-
You can also perform a group join by storing the results of the `join` operation into a temporary variable by using the [into](../../language-reference/keywords/into.md) keyword. For more information, see [join clause](../../language-reference/keywords/join-clause.md).
159+
You can also perform a group join by storing the results of the `join` operation into a temporary variable by using the [`into`](../../language-reference/keywords/into.md) keyword. For more information, see [join clause](../../language-reference/keywords/join-clause.md).
160160

161161
#### The let clause
162162

0 commit comments

Comments
 (0)