diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-06-28 14:42:42 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-06-28 15:15:01 +0200 |
commit | 769e7011d37a2ad54630aeebdb0b0163a0825f75 (patch) | |
tree | 43d4524f82b5206f684c7052e0522c9d96e7eb7b /src/construct | |
parent | 63985f2735dadbf5bd207b2d8363b2c332fc1921 (diff) | |
download | markdown-rs-769e7011d37a2ad54630aeebdb0b0163a0825f75.tar.gz markdown-rs-769e7011d37a2ad54630aeebdb0b0163a0825f75.tar.bz2 markdown-rs-769e7011d37a2ad54630aeebdb0b0163a0825f75.zip |
Add docs for `RESOURCE_DESTINATION_BALANCE_MAX`
Diffstat (limited to '')
-rw-r--r-- | src/construct/label_end.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/construct/label_end.rs b/src/construct/label_end.rs index 6e8e476..a814302 100644 --- a/src/construct/label_end.rs +++ b/src/construct/label_end.rs @@ -1,6 +1,6 @@ //! To do -use crate::constant::LINK_RESOURCE_DESTINATION_BALANCE_MAX; +use crate::constant::RESOURCE_DESTINATION_BALANCE_MAX; use crate::construct::{ partial_destination::{start as destination, Options as DestinationOptions}, partial_label::{start as label, Options as LabelOptions}, @@ -436,7 +436,7 @@ fn resource_open(tokenizer: &mut Tokenizer, code: Code) -> StateFnResult { t, c, DestinationOptions { - limit: LINK_RESOURCE_DESTINATION_BALANCE_MAX, + limit: RESOURCE_DESTINATION_BALANCE_MAX, destination: TokenType::ResourceDestination, literal: TokenType::ResourceDestinationLiteral, marker: TokenType::ResourceDestinationLiteralMarker, |