This is an automated email from the ASF dual-hosted git repository.
nightowl888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git
The following commit(s) were added to refs/heads/master by this push:
new 74a7e2a Update migration-guide.md
74a7e2a is described below
commit 74a7e2aefa0a7d1f1edf8b4b53fb9e77cbec0dc8
Author: Daniƫl Knippers <[email protected]>
AuthorDate: Sat Mar 5 19:00:52 2022 +0100
Update migration-guide.md
Fix typo "Int364": should be "Int64"
---
src/Lucene.Net/migration-guide.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Lucene.Net/migration-guide.md
b/src/Lucene.Net/migration-guide.md
index 314cfe8..9f34e57 100644
--- a/src/Lucene.Net/migration-guide.md
+++ b/src/Lucene.Net/migration-guide.md
@@ -43,7 +43,7 @@ Several Java conventions were replaced with their .NET
counterparts:
* Instead of `Integer` or `GetInteger()` use `Int32` or `GetInt32()`.
- * Instead of `Long` or `GetLong()` use `Int364` or `GetInt64()`.
+ * Instead of `Long` or `GetLong()` use `Int64` or `GetInt64()`.
* Instead of `Float` use `Single`. Note that
`Lucene.Net.Queries.Function.ValueSources.SingleFunction` was renamed
`Lucene.Net.Queries.Function.ValueSources.SingularFunction` to distinguish it
from the `System.Single` data type.