Skip to content

Commit

Permalink
Add missing docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rscarson committed May 24, 2022
1 parent 3c3af10 commit 5b37f4a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.7.1
-----
Add missing documentation

0.7.0
-----
Add an array datatype and associated functions
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ categories = ["parser-implementations", "development-tools", "command-line-utili
homepage = "https://rscarson.github.io/Lavendeux/"
repository = "https://github.com/rscarson/lavendeux-parser"
readme = "readme.md"
version = "0.7.0"
version = "0.7.1"
edition = "2021"

[features]
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,12 @@ uppercase("s1") | lowercase("S1") | trim(" s1 ")
regex("foo.*", "foobar") // foobar
regex("foo(.*)", "foobar", 1) // bar

// Array functions
len(a) | is_empty(a)
pop(a) | push(a) | dequeue(a) | enqueue(a)
remove(a, index) | element(a, index)
merge(a1, a2)

// Rounding functions
ceil(n) | floor(n) | round(n, precision)

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
//! }
//! ```
//! Extensions give a more flexible way of adding functionality at runtime. Extensions are written in javascript.
#![doc(html_root_url = "https://docs.rs/lavendeux-parser/0.7.0")]
#![doc(html_root_url = "https://docs.rs/lavendeux-parser/0.7.1")]
#![warn(missing_docs)]
#![warn(rustdoc::missing_doc_code_examples)]

Expand Down

0 comments on commit 5b37f4a

Please sign in to comment.