Skip to content

Commit e0e6701

Browse files
committed
SWEEP: Changed OrderedDictioary > OrderedDictionary in comments to fix spelling
1 parent 0abd8e1 commit e0e6701

16 files changed

Lines changed: 21 additions & 21 deletions

File tree

src/Lucene.Net.Analysis.Common/Analysis/Hunspell/Dictionary.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ private void ReadAffixFile(Stream affixStream, Encoding decoder)
290290
patterns.Add(null);
291291

292292
// zero strip -> 0 ord
293-
// LUCENENET specific: OrderedDictioary<TKey, TValue> is a replacement for LinkedHashMap<K, V> in the JDK
293+
// LUCENENET specific: OrderedDictionary<TKey, TValue> is a replacement for LinkedHashMap<K, V> in the JDK
294294
IDictionary<string, int> seenStrips = new JCG.OrderedDictionary<string, int>
295295
{
296296
[""] = 0

src/Lucene.Net.Analysis.Common/Analysis/Util/AnalysisSPILoader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public void Reload()
6363
UninterruptableMonitor.Enter(this);
6464
try
6565
{
66-
// LUCENENET specific: OrderedDictioary<TKey, TValue> is a replacement for LinkedHashMap<K, V> in the JDK
66+
// LUCENENET specific: OrderedDictionary<TKey, TValue> is a replacement for LinkedHashMap<K, V> in the JDK
6767
IDictionary<string, Type> services = new JCG.OrderedDictionary<string, Type>(this.services);
6868
SPIClassIterator<S> loader = SPIClassIterator<S>.Get();
6969

src/Lucene.Net.Benchmark/ByTask/Tasks/RepSumByNameRoundTask.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public override int DoLogic()
5555
protected virtual Report ReportSumByNameRound(IList<TaskStats> taskStats)
5656
{
5757
// aggregate by task name and round
58-
// LUCENENET specific: OrderedDictioary<TKey, TValue> is a replacement for LinkedHashMap<K, V> in the JDK
58+
// LUCENENET specific: OrderedDictionary<TKey, TValue> is a replacement for LinkedHashMap<K, V> in the JDK
5959
JCG.OrderedDictionary<string, TaskStats> p2 = new JCG.OrderedDictionary<string, TaskStats>();
6060
int reported = 0;
6161
foreach (TaskStats stat1 in taskStats)

src/Lucene.Net.Benchmark/ByTask/Tasks/RepSumByNameTask.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ protected virtual Report ReportSumByName(IList<TaskStats> taskStats)
5656
{
5757
// aggregate by task name
5858
int reported = 0;
59-
// LUCENENET specific: OrderedDictioary<TKey, TValue> is a replacement for LinkedHashMap<K, V> in the JDK
59+
// LUCENENET specific: OrderedDictionary<TKey, TValue> is a replacement for LinkedHashMap<K, V> in the JDK
6060
JCG.OrderedDictionary<string, TaskStats> p2 = new JCG.OrderedDictionary<string, TaskStats>();
6161
foreach (TaskStats stat1 in taskStats)
6262
{

src/Lucene.Net.Benchmark/ByTask/Tasks/RepSumByPrefRoundTask.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ protected virtual Report ReportSumByPrefixRound(IList<TaskStats> taskStats)
5151
{
5252
// aggregate by task name and by round
5353
int reported = 0;
54-
// LUCENENET specific: OrderedDictioary<TKey, TValue> is a replacement for LinkedHashMap<K, V> in the JDK
54+
// LUCENENET specific: OrderedDictionary<TKey, TValue> is a replacement for LinkedHashMap<K, V> in the JDK
5555
JCG.OrderedDictionary<string, TaskStats> p2 = new JCG.OrderedDictionary<string, TaskStats>();
5656
foreach (TaskStats stat1 in taskStats)
5757
{

src/Lucene.Net.Benchmark/ByTask/Tasks/RepSumByPrefTask.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ protected virtual Report ReportSumByPrefix(IList<TaskStats> taskStats)
5353
{
5454
// aggregate by task name
5555
int reported = 0;
56-
// LUCENENET specific: OrderedDictioary<TKey, TValue> is a replacement for LinkedHashMap<K, V> in the JDK
56+
// LUCENENET specific: OrderedDictionary<TKey, TValue> is a replacement for LinkedHashMap<K, V> in the JDK
5757
JCG.OrderedDictionary<string, TaskStats> p2 = new JCG.OrderedDictionary<string, TaskStats>();
5858
foreach (TaskStats stat1 in taskStats)
5959
{

src/Lucene.Net.Benchmark/ByTask/Tasks/ReportTask.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ protected virtual string TaskReportLine(string longestOp, TaskStats stat)
130130
return sb.ToString();
131131
}
132132

133-
// LUCENENET specific: OrderedDictioary<TKey, TValue> is a replacement for LinkedHashMap<K, V> in the JDK
133+
// LUCENENET specific: OrderedDictionary<TKey, TValue> is a replacement for LinkedHashMap<K, V> in the JDK
134134
protected virtual Report GenPartialReport(int reported, JCG.OrderedDictionary<string, TaskStats> partOfTasks, int totalSize)
135135
{
136136
string longetOp = LongestOp(partOfTasks.Values);

src/Lucene.Net.Expressions/JS/JavascriptCompiler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ private static MethodInfo GetMethod(Type type, string method, Type[] parms)
8989

9090
private readonly string sourceText;
9191

92-
// LUCENENET specific: OrderedDictioary<TKey, TValue> is a replacement for LinkedHashMap<K, V> in the JDK
92+
// LUCENENET specific: OrderedDictionary<TKey, TValue> is a replacement for LinkedHashMap<K, V> in the JDK
9393
private readonly IDictionary<string, int> externalsMap = new JCG.OrderedDictionary<string, int>();
9494

9595
private TypeBuilder dynamicType;

src/Lucene.Net.Facet/DrillDownQuery.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public static Term Term(string field, string dim, params string[] path)
7676

7777
private readonly FacetsConfig config;
7878
private readonly BooleanQuery query;
79-
// LUCENENET specific: OrderedDictioary<TKey, TValue> is a replacement for LinkedHashMap<K, V> in the JDK
79+
// LUCENENET specific: OrderedDictionary<TKey, TValue> is a replacement for LinkedHashMap<K, V> in the JDK
8080
private readonly IDictionary<string, int> drillDownDims = new JCG.OrderedDictionary<string, int>();
8181

8282
/// <summary>

src/Lucene.Net.Grouping/Function/FunctionDistinctValuesCollector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public FunctionDistinctValuesCollector(IDictionary /*Map<?, ?>*/ vsContext, Valu
4646
this.vsContext = vsContext;
4747
this.groupSource = groupSource;
4848
this.countSource = countSource;
49-
// LUCENENET specific: OrderedDictioary<TKey, TValue> is a replacement for LinkedHashMap<K, V> in the JDK
49+
// LUCENENET specific: OrderedDictionary<TKey, TValue> is a replacement for LinkedHashMap<K, V> in the JDK
5050
groupMap = new JCG.OrderedDictionary<MutableValue, GroupCount>();
5151
foreach (SearchGroup<MutableValue> group in groups)
5252
{

0 commit comments

Comments
 (0)