Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Hanna <jon@hackcraft.net>2017-02-17 21:31:00 +0300
committerStephen Toub <stoub@microsoft.com>2017-02-17 21:31:00 +0300
commitf0ccd9742065ee2aa296448fe3dd38ef6ff77af9 (patch)
tree2d0dc4a505cfdbb0a2125fa7df241c034d95dcb2 /src/System.Linq
parente7574660aa3257baccaf5a612dde7f0b9268ffe9 (diff)
Fix several typos (#16264)
* Fix several typos coment → comment rangecheck → range check testcase → test case deffer → defer everytime → every time whitespaces → whitespace (whitespace is uncountable) white space → whitespace white spaces → whitespace the the → the a → a nametest → name test scaned → scanned and and → and undecision → indecision are no whitespace → is no whitespace Whidbey casing Everett casing unkown → unknown messsage → message mesage → message mesasage → message publically → publicly (publically is attested but questionable). exceptionto → exception to mutatable → mutable implemention → implementation hadnt → hadn't couldnt → couldn't wouldnt → wouldn't wont → won't isntead → instead preocessor → processor particural → particular interations → iterations enterying → entering stoppped → stopped stoped → stopped verication → verification compuatation → computation revisisted → revisited partioner → partitioner lock'ed → locked table'd → table would hashtable'ed → hashtabled (still coining, but tabled is analogous) intialize → initialize calcuate → calculate perfom → perform performr → perform matthing → matching corect → correct thorw → throw supress → suppress reqeust → request mutliple → multiple ot → to trival → trivial upto → up to specfices → specifies patttern → pattern descrepancy → discrepancy explict → explicit implict → implicit usign → using non-sensical → nonsensical contination → continuation producs → products childred → children parametr → parameter approriate → appropriate insted → instead expection → exception successsfully → successfully funtion → function unqiue → unique apparant → apparent expception → exception conatined → contained apssed → passed propogate → propagate cutoms → custom currrent → current curent → current concurent → concurrent coplted → completed unexcepted → Unexpected (where the latter seems more appropriate) to to → to abd → and refence → reference particiant → participant cuurrent → current extratc → extract cparticipant → participant ehich → which choosen → chosen mske → make alread → already aquire → acquire droppping → dropping intial → initial tru → true aprticipant → participant excption → exception sempahore → semaphore fileds → fields threashold → threshold duting → during didnt → didn't atribute → attribute serliazation → serialization localy → locally channge → change prperties → properties attrbute → attribute sentinal → sentinel shoukd → should existant → existent commnent → comment expeted → expected propert → property commnet → comment datat → data ther → the mach → match inhertiance → inheritance convience → convenience completley → completely otheriwse → otherwise actuall → actual inefficent → inefficient defalut → default comparsion → comparison charcters → characters postion → position aleady → already charater → character incosistent → inconsistent seperate → separate veify → verify currentlly → currently corect → correct betwwen → between omiting → omitting readr → reader compae → compare allways → always thown → thrown with with → with usecase → use case avare → aware lexem → lexeme grammer → grammar oposite → opposite overrided → overridden everithig → everything chages → changes memeber → member proerties → properties identifer → identifier doesnot → does not deriaved → derived varialble → variable * defered -> deferred * Revert changes within clrcompression. * Revert underreach → under-reach * Fix casing broken while fixing spelling. * Use type name instead of "Diagnostic sources"
Diffstat (limited to 'src/System.Linq')
-rw-r--r--src/System.Linq/tests/SelectTests.cs6
-rw-r--r--src/System.Linq/tests/WhereTests.cs6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/System.Linq/tests/SelectTests.cs b/src/System.Linq/tests/SelectTests.cs
index 2714ab8639..b09c758a01 100644
--- a/src/System.Linq/tests/SelectTests.cs
+++ b/src/System.Linq/tests/SelectTests.cs
@@ -240,7 +240,7 @@ namespace System.Linq.Tests
}
[Fact]
- public void SelectSelect_SourceIsAnArray_ExecutionIsDefered()
+ public void SelectSelect_SourceIsAnArray_ExecutionIsDeferred()
{
bool funcCalled = false;
Func<int>[] source = new Func<int>[] { () => { funcCalled = true; return 1; } };
@@ -250,7 +250,7 @@ namespace System.Linq.Tests
}
[Fact]
- public void SelectSelect_SourceIsAList_ExecutionIsDefered()
+ public void SelectSelect_SourceIsAList_ExecutionIsDeferred()
{
bool funcCalled = false;
List<Func<int>> source = new List<Func<int>>() { () => { funcCalled = true; return 1; } };
@@ -280,7 +280,7 @@ namespace System.Linq.Tests
}
[Fact]
- public void SelectSelect_SourceIsIEnumerable_ExecutionIsDefered()
+ public void SelectSelect_SourceIsIEnumerable_ExecutionIsDeferred()
{
bool funcCalled = false;
IEnumerable<Func<int>> source = Enumerable.Repeat((Func<int>)(() => { funcCalled = true; return 1; }), 1);
diff --git a/src/System.Linq/tests/WhereTests.cs b/src/System.Linq/tests/WhereTests.cs
index cd89835fa7..6cac224c47 100644
--- a/src/System.Linq/tests/WhereTests.cs
+++ b/src/System.Linq/tests/WhereTests.cs
@@ -105,7 +105,7 @@ namespace System.Linq.Tests
}
[Fact]
- public void WhereWhere_Array_ExecutionIsDefered()
+ public void WhereWhere_Array_ExecutionIsDeferred()
{
bool funcCalled = false;
Func<bool>[] source = new Func<bool>[] { () => { funcCalled = true; return true; } };
@@ -118,7 +118,7 @@ namespace System.Linq.Tests
}
[Fact]
- public void WhereWhere_List_ExecutionIsDefered()
+ public void WhereWhere_List_ExecutionIsDeferred()
{
bool funcCalled = false;
List<Func<bool>> source = new List<Func<bool>>() { () => { funcCalled = true; return true; } };
@@ -157,7 +157,7 @@ namespace System.Linq.Tests
}
[Fact]
- public void WhereWhere_IEnumerable_ExecutionIsDefered()
+ public void WhereWhere_IEnumerable_ExecutionIsDeferred()
{
bool funcCalled = false;
IEnumerable<Func<bool>> source = Enumerable.Repeat((Func<bool>)(() => { funcCalled = true; return true; }), 1);