Merge pull request #3005 from ericvergnaud/fix-typo-in-csharp-api

Fix typo
This commit is contained in:
ericvergnaud 2020-12-14 09:12:46 +08:00 committed by GitHub
commit 3ec57ddb85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ namespace Antlr4.Runtime
/// <summary>Creates an <see cref="ICharStream"/> given a <see cref="string"/>.
/// </summary>
public static ICharStream fromstring(string s)
public static ICharStream fromString(string s)
{
return new CodePointCharStream(s);
}