summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2017-08-18 10:20:10 -0700
committerGitHub <noreply@github.com>2017-08-18 10:20:10 -0700
commit1ab776fa86e05bde6ebb12c20d702211dea374ab (patch)
treed3133454c6a0194977eab8c7c8f5a24fe16fb00c
parent0d510c5528831061b4256ebcd20a847626ca8f7a (diff)
parent9d0d3a0e342d483278e02ccdefa5eb51073a8899 (diff)
Merge pull request #2819 from larrybolt/patch-1
[csharp/en] Spelling mistake that threw me of while reading
-rw-r--r--csharp.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown
index cca99fb0..8a631e54 100644
--- a/csharp.html.markdown
+++ b/csharp.html.markdown
@@ -593,7 +593,7 @@ on a new line! ""Wow!"", the masses cried";
Console.WriteLine(bikeSummary.Name);
// ASPARALLEL
- // And this is where things get wicked - combines linq and parallel operations
+ // And this is where things get wicked - combine linq and parallel operations
var threeWheelers = bikes.AsParallel().Where(b => b.Wheels == 3).Select(b => b.Name);
// this will happen in parallel! Threads will automagically be spun up and the
// results divvied amongst them! Amazing for large datasets when you have lots of
@@ -613,7 +613,7 @@ on a new line! ""Wow!"", the masses cried";
.ThenBy(b => b.Name)
.Select(b => b.Name); // still no query run
- // Now the query runs, but opens a reader, so only populates are you iterate through
+ // Now the query runs, but opens a reader, so only populates as you iterate through
foreach (string bike in query)
Console.WriteLine(result);