Skip to content

Commit

Permalink
Attempted fix in Lexer
Browse files Browse the repository at this point in the history
  • Loading branch information
bglusman committed Nov 4, 2024
1 parent cc3edde commit 15f402a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit 15f402a

Please sign in to comment.