Skip to content

Commit e90188d

Browse files
committed
again
1 parent be15769 commit e90188d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/csharp/tutorials/exploration/csharp-7.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Explore C# 7 - C# interactive C# tutorial
33
metadata:
44
title: Explore C# 7 - Try the new features in C# 6 interactively, using your browser
5-
description: In this tutorial, you'll use your browser to explore C# 6 interactively. You'll explore the new idioms you can use with C# 6 that enable more concise and readable code.
5+
description: In this tutorial, you'll use your browser to explore C# 7 interactively. You'll explore the new idioms you can use with C# 7 that enable more concise and readable code.
66
audience: Developer
77
level: intermediate
88
ms.date: 03/20/2019
@@ -128,11 +128,11 @@ when inspecting the tuple using reflection at runtime, for example.
128128
Creating a tuple is more efficient and more productive.
129129
It has a simpler, lightweight syntax to define a data structure that carries
130130
more than one value. The example method below returns the minimum and maximum
131-
values found in a sequence of integers:
131+
values found in a sequence of integers.
132132

133133
[!code-csharp[TupleReturningMethod](~/samples/snippets/csharp/new-in-7/program.cs#08_TupleReturningMethod "Tuple returning method")]
134134

135-
Using tuples in this way offers several advantages:
135+
Using tuples in this way offers several advantages.
136136

137137
* You save the work of authoring a `class` or a `struct` that defines the type returned.
138138
* You do not need to create new type.
@@ -164,7 +164,7 @@ when inspecting the tuple using reflection at runtime, for example.
164164
[!code-csharp[DeconstructPoint](~/samples/snippets/csharp/new-in-7/program.cs#12_DeconstructPoint "Deconstruct a point")]
165165

166166
You are not bound by the names defined in the `Deconstruct` method. You
167-
can rename the extract variables as part of the assignment:
167+
can rename the extract variables as part of the assignment.
168168

169169
[!code-csharp[DeconstructNames](~/samples/snippets/csharp/new-in-7/program.cs#13_DeconstructNames "Deconstruct with new names")]
170170

0 commit comments

Comments
 (0)