diff options
Diffstat (limited to 'nim/llstream.pas')
-rw-r--r-- | nim/llstream.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nim/llstream.pas b/nim/llstream.pas index 2d4336664..df4c823a6 100644 --- a/nim/llstream.pas +++ b/nim/llstream.pas @@ -22,7 +22,7 @@ type llsFile, // stream encapsulates a file llsStdIn); // stream encapsulates stdin TLLStream = object(NObject) - kind: TLLStreamKind; // exposed for low-level access (lexbase uses this) + kind: TLLStreamKind; // accessible for low-level access (lexbase uses this) f: TBinaryFile; s: string; pos: int; // for string streams |