diff --git a/README.md b/README.md index ab6d988..6db37b6 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ A safe, multi-threaded toolkit for adding Torznab APIs to programs. You just foc Just fill in your own relevant functions and config, and torznab-toolkit will run the API for you -```rs +```rust use torznab_toolkit; let config: torznab_toolkit::config::Config = /* config goes here */ @@ -23,7 +23,7 @@ Note: I wrote the line above when I was tired. Don't ask me what *literal* truck | API call | Explanation | Implemented | | -------- | ------------------------------------------------------------ | ----------- | -| caps | Returns the capabilities of the api. | ❌ | +| caps | Returns the capabilities of the api. | ✅ | | search | Free text search query. | ❌ | | tvsearch | Search query with tv specific query params and filtering. | ❌ | | movie | Search query with movie specific query params and filtering. | ❌ | diff --git a/dev-notes.md b/dev-notes.md index aabbb13..3678845 100644 --- a/dev-notes.md +++ b/dev-notes.md @@ -11,7 +11,7 @@ example usage: -```rs +```rust let config = /* config goes here */ fn main() -> Result { @@ -25,7 +25,7 @@ fn main() -> Result { Queries are returned as an RSS feed something like this: -```rss +```rusts diff --git a/src/dummy.rs b/src/dummy.rs index 6f1f7b5..3db04c6 100644 --- a/src/dummy.rs +++ b/src/dummy.rs @@ -6,7 +6,7 @@ use std::collections::HashMap; /// HashMap equivalent of vec![] /// /// Example: -/// ```rs +/// ```rust /// hashmap!(("key", "value")) /// ``` macro_rules! hashmap {