diff --git a/README.md b/README.md index 6db37b6..ab6d988 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 -```rust +```rs 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 3678845..aabbb13 100644 --- a/dev-notes.md +++ b/dev-notes.md @@ -11,7 +11,7 @@ example usage: -```rust +```rs 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: -```rusts +```rss diff --git a/src/dummy.rs b/src/dummy.rs index 3db04c6..6f1f7b5 100644 --- a/src/dummy.rs +++ b/src/dummy.rs @@ -6,7 +6,7 @@ use std::collections::HashMap; /// HashMap equivalent of vec![] /// /// Example: -/// ```rust +/// ```rs /// hashmap!(("key", "value")) /// ``` macro_rules! hashmap {