Skip to content

Commit

Permalink
Merge pull request #4 from woshilapin/deny-missing-doc
Browse files Browse the repository at this point in the history
[doc] Deny missing documentation in the crate
  • Loading branch information
datanel authored Apr 20, 2020
2 parents 0333137 + c84871e commit 8fce183
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "skip_error"
version = "1.0.0"
version = "1.0.1"
license = "MIT"
authors = ["Kisio Digital <[email protected]>"]
description = "A macro to help skip an iteration in a loop from a Result"
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
[![GitHub Action Status][github_actions_badge]][github_actions]
[![Latest Version]][crates.io]

[github_actions_badge]: https://img.shields.io/github/workflow/status/CanalTP/skip_error/Continuous%20Integration
[github_actions]: https://github.com/CanalTP/skip_error/actions
[Latest Version]: https://img.shields.io/crates/v/skip_error.svg
[crates.io]: https://crates.io/crates/skip_error

# skip_error
`skip_error` provides a single macro to help ignoring `Error` that would happen
Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![deny(missing_docs)]

//! This crate provides a single macro to help skipping a error in a loop,
//! possibly logging it.
//!
Expand Down

0 comments on commit 8fce183

Please sign in to comment.