This is an automated email from the ASF dual-hosted git repository.
nightowl888 pushed a commit to branch docs/4.8.0-beta00016
in repository https://gitbox.apache.org/repos/asf/lucenenet.git
The following commit(s) were added to refs/heads/docs/4.8.0-beta00016 by this
push:
new 1223691 Update migration-guide.md
1223691 is described below
commit 1223691eaddcf2770ef1365b8bed784612bdf2f7
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.