Skip to content

Commit

Permalink
Remove commas, hopefully fixes build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
schveiguy committed Aug 1, 2016
1 parent d2f5791 commit d4f2cda
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec/arrays.dd
Expand Up @@ -424,8 +424,8 @@ Returns an array literal with each element of the literal being the $(D .init) p
$(TROW $(D .length), Returns the number of elements in the array.
This is a fixed quantity for static arrays. It is of type $(D size_t).)
$(TROW $(D .ptr), Returns a pointer to the first element of the array.)
$(TROW $(D .dup), Create a dynamic array of the same size and copy the contents of the array into it. The copy will have any immutability or const stripped. If this conversion is invalid, the call will not compile.)
$(TROW $(D .idup), Create a dynamic array of the same size and copy the contents of the array into it. The copy is typed as being immutable. If this conversion is invalid, the call will not compile.)
$(TROW $(D .dup), Create a dynamic array of the same size and copy the contents of the array into it. The copy will have any immutability or const stripped. If this conversion is invalid the call will not compile.)
$(TROW $(D .idup), Create a dynamic array of the same size and copy the contents of the array into it. The copy is typed as being immutable. If this conversion is invalid the call will not compile.)
$(TROW $(D .reverse), Reverses in place the order of the elements in the array.
Returns the array.)
$(TROW $(D .sort), Sorts in place the order of the elements in
Expand All @@ -442,8 +442,8 @@ Returns an array literal with each element of the literal being the $(D .init) p
$(TROW $(D .length), Get/set number of elements in the
array. It is of type $(D size_t).)
$(TROW $(D .ptr), Returns a pointer to the first element of the array.)
$(TROW $(D .dup), Create a dynamic array of the same size and copy the contents of the array into it. The copy will have any immutability or const stripped. If this conversion is invalid, the call will not compile.)
$(TROW $(D .idup), Create a dynamic array of the same size and copy the contents of the array into it. The copy is typed as being immutable. If this conversion is invalid, the call will not compile.)
$(TROW $(D .dup), Create a dynamic array of the same size and copy the contents of the array into it. The copy will have any immutability or const stripped. If this conversion is invalid the call will not compile.)
$(TROW $(D .idup), Create a dynamic array of the same size and copy the contents of the array into it. The copy is typed as being immutable. If this conversion is invalid the call will not compile.)
$(TROW $(D .reverse), Reverses in place the order of the
elements in the array. Returns the array.)
$(TROW $(D .sort), Sorts in place the order of the elements in
Expand Down

0 comments on commit d4f2cda

Please sign in to comment.