Skip to content

Commit

Permalink
Delete trailing dollar symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
titsuki committed Aug 31, 2016
1 parent 37a0b77 commit 3cc1cae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/Language/syntax.pod6
Expand Up @@ -64,10 +64,10 @@ supported. Newlines that are unspaced still count when the compiler produces
line numbers. Usecases for unspace are separation of postfix operators and
routine argument lists.
sub alignment(+@l) { +@l };$
sub long-name-alignment(+@l) { +@l };$
alignment\ (1,2,3,4)>>.say;$
long-name-alignment(3,5)\ >>.say;$
sub alignment(+@l) { +@l };
sub long-name-alignment(+@l) { +@l };
alignment\ (1,2,3,4)>>.say;
long-name-alignment(3,5)\ >>.say;
=head2 Separating Statements
Expand Down

0 comments on commit 3cc1cae

Please sign in to comment.