Skip to content

Commit c6fb6d6

Browse files
authored
Corrected code snippet
1 parent a988f91 commit c6fb6d6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/general-development/managed-metadata-and-navigation-in-sharepoint.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Managed metadata and navigation in SharePoint
3-
ms.date: 09/25/2017
3+
ms.date: 03/218/2021
44
ms.prod: sharepoint
55
ms.assetid: b66d4ec1-a2ef-49cc-8ca5-a6b516bff02e
66
localization_priority: Normal
@@ -136,11 +136,11 @@ You can use the following code examples to complete basic operations with the ta
136136
{
137137
if (termStore != null)
138138
{
139-
foreach( TermGroup groupin termStore.Groups)
139+
foreach(TermGroup group in termStore.Groups)
140140
{
141141
Console.WriteLine("Group " + group.Name);
142142

143-
foreach( TermSet termSetin group.TermSets )
143+
foreach(TermSet termSet in group.TermSets )
144144
{
145145
Console.WriteLine("TermSet " + termSet.Name);
146146

0 commit comments

Comments
 (0)