Skip to content

Commit

Permalink
Merge branch 'master' into jfacorro.326.remove_io_formats
Browse files Browse the repository at this point in the history
  • Loading branch information
jfacorro committed Jan 14, 2016
2 parents 3a3e9fb + ab5de60 commit 87d5127
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/examples/fail_operator_spaces.erl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
function4/2,
function5/0,
function6/0,
function7/0,
tag_filters/2]).

%% No space before and after coma,on a comment.
Expand Down Expand Up @@ -36,6 +37,13 @@ function6() ->
_MissingRightSpace = 2 +3,
_Successfull = 2 + 3.

function7() ->
% commas within strings must be ignored
Name = "anyone",
re:run(Name, "^.{1,20}$", [unicode]),
RegExp = "^.{1,20}$",
re:run(Name, RegExp, [unicode]).

tag_filters(DocName, #{conn := Conn} = State) ->
TableName = atom_to_list(DocName),
Sql = ["SELECT "
Expand Down

0 comments on commit 87d5127

Please sign in to comment.