Skip to content

Commit

Permalink
#92: Renaming stream to Streams.
Browse files Browse the repository at this point in the history
Tests ok inside the lib. No integration test yet done.
  • Loading branch information
nicolas-zozol committed Oct 15, 2017
1 parent d29da81 commit ba8cf26
Show file tree
Hide file tree
Showing 5 changed files with 79 additions and 79 deletions.
6 changes: 3 additions & 3 deletions src/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import parsec from './parsec/index';
import parser from './parsec/parser';
import {F, C, N} from './parsec/index';
import standard from './standard/index';
import Stream from './stream/index';
import Streams from './stream/index';

const JSON = standard.jsonParser;
const MD = standard.markdownBundle;
Expand All @@ -24,7 +24,7 @@ export const bundle = {
genlex,
parsec,
standard,
Stream,
Streams,
parser,
F,
C,
Expand All @@ -40,7 +40,7 @@ export {
genlex,
parsec,
standard,
Stream,
Streams,
parser,
F,
C,
Expand Down
4 changes: 2 additions & 2 deletions src/lib/standard/markdown/document-parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
* Created by Simon on 15/12/2016.
*/
/*
import Stream from '../../stream/index';
import Streams from '../../stream/index';
function parseDocument( string, offset=0){
return document().parse(Stream.ofString(string), offset)
return document().parse(Streams.ofString(string), offset)
}
Expand Down
Loading

0 comments on commit ba8cf26

Please sign in to comment.