diff options
author | 2021-05-17 08:46:30 -0700 | |
---|---|---|
committer | 2021-05-17 15:46:30 +0000 | |
commit | 9c240dcf9381d98126758491141c2f9505b4f172 (patch) | |
tree | 7e21b25654c1d5290535c52dbd9c5a1291495816 /src/models.rs | |
parent | 59613bea6ae9d5d1055e551ce4887d8b0ebd74bb (diff) | |
download | notion-9c240dcf9381d98126758491141c2f9505b4f172.tar.gz notion-9c240dcf9381d98126758491141c2f9505b4f172.tar.zst notion-9c240dcf9381d98126758491141c2f9505b4f172.zip |
ci: adding doc build step (#10)
Diffstat (limited to 'src/models.rs')
-rw-r--r-- | src/models.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/models.rs b/src/models.rs index 734ece5..82ef7c9 100644 --- a/src/models.rs +++ b/src/models.rs @@ -282,7 +282,7 @@ impl BlockId { impl From<PageId> for BlockId { fn from(page_id: PageId) -> Self { - BlockId(page_id.0.clone()) + BlockId(page_id.0) } } |