fix another reference to previous streams

This commit is contained in:
parrt 2017-03-29 14:21:16 -07:00
parent 6dd9a3fbe3
commit cd2b6936cf
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ grammar Foreign;
a : '外' ;
```
The recognizers that ANTLR generates assume a character vocabulary containing all Unicode characters. The input file encoding assumed by the runtime library depends on the target language. For the Java target, the runtime library assumes files are in UTF-8. Using the constructors, you can specify a different encoding. See, for example, ANTLRs `ANTLRFileStream`.
The recognizers that ANTLR generates assume a character vocabulary containing all Unicode characters. The input file encoding assumed by the runtime library depends on the target language. For the Java target, the runtime library assumes files are in UTF-8. Using the factory methods in `CharStreams`, you can specify a different encoding.
## Actions