Skip to content

Commit b166de9

Browse files
Update csharp-scenarios/01-Alien-Translator.ipynb
Co-authored-by: Katie Savage <[email protected]>
1 parent 32bc3eb commit b166de9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csharp-scenarios/01-Alien-Translator.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@
370370
"cell_type": "markdown",
371371
"metadata": {},
372372
"source": [
373-
"Now that we can split our sentence string into word substrings, it’s time to loop over them and translate! To do this, we’ll use a [foreach loop](https://docs.microsoft.com/dotnet/csharp/language-reference/statements/iteration-statements#the-foreach-statement). This is a special type of loop that executes a statement for each element in a group of that type of element. \n",
373+
"Now that we can split our sentence string into word substrings, it’s time to loop over them and translate! To do this, we’ll use a [for loop](https://docs.microsoft.com/dotnet/csharp/language-reference/statements/iteration-statements#the-for-statement). This is a special type of loop that executes a statement for a specified number of times. \n",
374374
"\n",
375375
"The syntax works like this: "
376376
]

0 commit comments

Comments
 (0)