Skip to content

Commit 966e06a

Browse files
Johnny Gérardmairaw
authored andcommitted
Update from-clause.md (#6579)
Typo
1 parent 312e1af commit 966e06a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/csharp/language-reference/keywords/from-clause.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ A query expression must begin with a `from` clause. Additionally, a query expres
1919

2020
Both the range variable and the data source are strongly typed. The data source referenced in the `from` clause must have a type of <xref:System.Collections.IEnumerable>, <xref:System.Collections.Generic.IEnumerable%601>, or a derived type such as <xref:System.Linq.IQueryable%601>.
2121

22-
In the following example, `numbers` is the data source and `num` is the range variable. Note that both variables are strongly typed even through the [var](var.md) keyword is used.
22+
In the following example, `numbers` is the data source and `num` is the range variable. Note that both variables are strongly typed even though the [var](var.md) keyword is used.
2323

2424
[!code-csharp[cscsrefQueryKeywords#1](~/samples/snippets/csharp/VS_Snippets_VBCSharp/CsCsrefQueryKeywords/CS/From.cs#1)]
2525

@@ -50,4 +50,4 @@ For more information about join operations that use multiple `from` clauses, see
5050
## See also
5151

5252
[Query Keywords (LINQ)](query-keywords.md)
53-
[Language Integrated Query (LINQ)](../../linq/index.md)
53+
[Language Integrated Query (LINQ)](../../linq/index.md)

0 commit comments

Comments
 (0)