diff options
author | 2021-08-28 10:14:39 -0700 | |
---|---|---|
committer | 2021-08-28 17:14:39 +0000 | |
commit | c9266553610fd48a66048d9169da4703a0c71716 (patch) | |
tree | 0d65a763f646d8b213411328d56b99620123edc2 /src/lib.rs | |
parent | 4fa6f626a0fc571b0293d63da78ca37b4e359af1 (diff) | |
download | notion-c9266553610fd48a66048d9169da4703a0c71716.tar.gz notion-c9266553610fd48a66048d9169da4703a0c71716.tar.zst notion-c9266553610fd48a66048d9169da4703a0c71716.zip |
Number format parsing bug. Fixes #15 (#16)
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -94,7 +94,7 @@ impl NotionApi { } /// Search all pages in notion. - /// Query: can either be a [SearchRequest] or a + /// `query` can either be a [SearchRequest] or a slightly more convenient /// [NotionSearch](models::search::NotionSearch) query. pub async fn search<T: Into<SearchRequest>>( &self, |