Skip to content

Commit 7684f58

Browse files
committed
Use standard 2-space indent
Also fix some indents that don't follow the Rectangle Rule. This commit will be added to .git-blame-ignore-revs
1 parent aaf11fc commit 7684f58

13 files changed

+1435
-1432
lines changed

basic-wrapper-stream.dylan

Lines changed: 229 additions & 229 deletions
Large diffs are not rendered by default.

canonical-text-stream.dylan

Lines changed: 203 additions & 203 deletions
Large diffs are not rendered by default.

library.dylan

Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -2,61 +2,61 @@ module: dylan-user
22
author: Dustin Voss
33
44
define library wrapper-streams
5-
use common-dylan;
6-
use io;
7-
use collection-extensions, import: { vector-search };
8-
9-
export
10-
basic-wrapper-stream,
11-
replacing-stream,
12-
canonical-text-stream;
5+
use common-dylan;
6+
use io;
7+
use collection-extensions, import: { vector-search };
8+
9+
export
10+
basic-wrapper-stream,
11+
replacing-stream,
12+
canonical-text-stream;
1313
end library;
1414

1515

1616
define module basic-wrapper-stream
17-
// from common-dylan
18-
use dylan;
19-
use common-extensions, exclude: { format-to-string };
20-
// from io
21-
use streams;
22-
use format-out;
23-
24-
export
25-
<basic-wrapper-stream>,
26-
sequence-type-for-inner-stream, string-type-for-inner-stream;
17+
// from common-dylan
18+
use dylan;
19+
use common-extensions, exclude: { format-to-string };
20+
// from io
21+
use streams;
22+
use format-out;
23+
24+
export
25+
<basic-wrapper-stream>,
26+
sequence-type-for-inner-stream, string-type-for-inner-stream;
2727
end module;
28-
28+
2929

3030
define module replacing-stream
31-
use basic-wrapper-stream;
32-
// from common-dylan
33-
use dylan;
34-
use common-extensions, exclude: { format-to-string };
35-
// from io
36-
use streams;
37-
use format-out;
38-
// from collection-extensions
39-
use vector-search;
40-
41-
export
42-
<replacing-stream>,
43-
add-replacement-contents, inner-stream-position;
31+
use basic-wrapper-stream;
32+
// from common-dylan
33+
use dylan;
34+
use common-extensions, exclude: { format-to-string };
35+
// from io
36+
use streams;
37+
use format-out;
38+
// from collection-extensions
39+
use vector-search;
40+
41+
export
42+
<replacing-stream>,
43+
add-replacement-contents, inner-stream-position;
4444
end module;
4545

4646

4747
define module canonical-text-stream
48-
use basic-wrapper-stream;
49-
use replacing-stream;
50-
// from common-dylan
51-
use dylan;
52-
use common-extensions, exclude: { format-to-string };
53-
// from io
54-
use streams;
55-
use format-out;
56-
// from collection-extensions
57-
use vector-search;
58-
59-
export
60-
<canonical-text-stream>,
61-
tabstop-size, line-col-position;
48+
use basic-wrapper-stream;
49+
use replacing-stream;
50+
// from common-dylan
51+
use dylan;
52+
use common-extensions, exclude: { format-to-string };
53+
// from io
54+
use streams;
55+
use format-out;
56+
// from collection-extensions
57+
use vector-search;
58+
59+
export
60+
<canonical-text-stream>,
61+
tabstop-size, line-col-position;
6262
end module;

0 commit comments

Comments
 (0)