Skip to content
This repository has been archived by the owner on Aug 30, 2019. It is now read-only.

Commit

Permalink
Whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Sackman committed May 10, 2011
1 parent 382feed commit ca73a0c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ form subexpressions. Thus:
F = [1, _, _, [_], 5 | [6, [_] | [_]]],
%% This is the same as:
%% [1, _, _, [_], 5, 6, [_], _]
[1, 2, 3 , G, 5, 6, H, 8] = F(2, 3, 8),
[1, 2, 3, G, 5, 6, H, 8] = F(2, 3, 8),
[4] = G(4),
[7] = H(7).

Expand Down
4 changes: 2 additions & 2 deletions test/src/test_cut.erl
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,11 @@ test_cut_list() ->
%% [1, _, _, [_], 5, 6, [_], _]
%% And thus becomes
%% \A, B, C -> [1, A, B, \D -> [D], 5, 6, \E -> [E], C]
[1, 2, 3 , H1, 5, 6, H2, 8] = H(2, 3, 8),
[1, 2, 3, H1, 5, 6, H2, 8] = H(2, 3, 8),
[4] = H1(4),
[7] = H2(7),

I = [_ , [_]],
I = [_, [_]],
[a, I1] = I(a),
[b] = I1(b),
passed.
Expand Down

0 comments on commit ca73a0c

Please sign in to comment.