Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule AyeSQL.MixProject do
use Mix.Project

@version "1.1.3"
@version "1.1.4"
@name "AyeSQL"
@description "Library for using raw SQL"
@app :ayesql
Expand Down
4 changes: 2 additions & 2 deletions src/ayesql_lexer.xrl
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ NewLine = (\n|\r)+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Comments and special directives

FunName = {NewLine}*(\-\-)\sname\:\s[^\n\r]+
FunDocs = {NewLine}*(\-\-)\sdocs\:\s[^\n\r]+
FunName = {NewLine}*{WhiteSpace}*(\-\-)\sname\:\s[^\n\r]+
FunDocs = {NewLine}*{WhiteSpace}*(\-\-)\sdocs\:\s[^\n\r]+
Comment = (\-\-)[^\n\r]+

Atom = [a-z_][0-9a-zA-Z_]*
Expand Down
Loading