summaryrefslogtreecommitdiffstats
path: root/src/page.rs
diff options
context:
space:
mode:
authorPaul Woolcock <paul@woolcock.us>2020-09-25 13:38:44 -0400
committerPaul Woolcock <paul@woolcock.us>2020-09-25 16:44:06 -0400
commit0b4ee7bfb285aa7c095ac050e2e0b8c659022113 (patch)
treeb25e03a48409b53d734ff8d76a8cf5d752ca77b2 /src/page.rs
parentc30b4da57c418e87301cd85b9fe38f93efb0f4bb (diff)
Various cleanup tasks
* Remove old `extern crate` stmts * Remove rust-skeptic * Clean up Cargo.toml
Diffstat (limited to 'src/page.rs')
-rw-r--r--src/page.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/page.rs b/src/page.rs
index 06c76bd..67fb340 100644
--- a/src/page.rs
+++ b/src/page.rs
@@ -11,7 +11,7 @@ macro_rules! pages {
($($direction:ident: $fun:ident),*) => {
$(
- doc_comment!(concat!(
+ doc_comment::doc_comment!(concat!(
"Method to retrieve the ", stringify!($direction), " page of results"),
pub fn $fun(&mut self) -> Result<Option<Vec<T>>> {
let url = match self.$direction.take() {