Changeset 88 for trunk/src/fixtures.erl
- Timestamp:
- 08/06/09 11:28:55 (3 years ago)
- File:
-
- 1 edited
-
trunk/src/fixtures.erl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/fixtures.erl
r85 r88 44 44 ok. 45 45 46 normalise ([ H | []]) ->47 H;46 normalise ([String]) when is_list (String) -> 47 String; 48 48 normalise ([H | T]) when is_list (H) -> 49 49 %% Inserts newlines when list of strings... 50 50 normalise ([string: concat (H, string: concat ("\n", hd (T))) | tl (T)]); 51 normalise ([String]) when is_list (String) ->52 String;53 51 normalise (String) when is_list (String) -> 54 52 String.
Note: See TracChangeset
for help on using the changeset viewer.
