Skip to content

Commit

Permalink
update readme and scm rockspec
Browse files Browse the repository at this point in the history
  • Loading branch information
siffiejoe committed Jan 15, 2015
1 parent bdade34 commit 4e0a867
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions doc/readme.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
![luaepnf Logo](luaepnf.png)

# luaepnf -- Extended PEG Notation Format #

## Introduction ##
Expand All @@ -26,7 +24,7 @@ grammars with error handling and AST building:
local _ = WS^0
local number = C( P"-"^-1 * R"09"^1 )
local err = E"variable, number, or '(' expected"

START "expr"
expr = _ * (V"aexpr"+err) * EOF"operator (+-*/) expected"
aexpr = V"mexpr" * (S"+-" * _ * (V"mexpr"+err))^0
Expand Down Expand Up @@ -215,7 +213,7 @@ Comments and feedback are always welcome.
luaepnf is *copyrighted free software* distributed under the MIT
license (the same license as Lua 5.1). The full license text follows:

luaepnf (c) 2013 Philipp Janda
luaepnf (c) 2013-2015 Philipp Janda

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
2 changes: 1 addition & 1 deletion luaepnf-scm-0.rockspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ description = {
license = "MIT"
}
dependencies = {
"lua >= 5.1, <= 5.2",
"lua >= 5.1, < 5.4",
"lpeg >= 0.8"
}
build = {
Expand Down

0 comments on commit 4e0a867

Please sign in to comment.