diff options
author | Martin Robinson <mrobinson@igalia.com> | 2024-03-06 13:55:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-06 12:55:35 +0000 |
commit | 096bd2977a7e322336bd885d68c7e722a47bfeaf (patch) | |
tree | f7086b850a7ea115c736c2c8738d11bda1bff760 /components/layout_2020/flow/mod.rs | |
parent | dea416eec99b475a2ed1c8ae47fdef4b8eb913de (diff) | |
download | servo-096bd2977a7e322336bd885d68c7e722a47bfeaf.tar.gz servo-096bd2977a7e322336bd885d68c7e722a47bfeaf.zip |
layout: Add start of documentation for inline layout (#31519)
Co-authored-by: Rakhi Sharma <atbrakhi@igalia.com>
Diffstat (limited to 'components/layout_2020/flow/mod.rs')
-rw-r--r-- | components/layout_2020/flow/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/layout_2020/flow/mod.rs b/components/layout_2020/flow/mod.rs index f1fd2091996..4f8afbe741b 100644 --- a/components/layout_2020/flow/mod.rs +++ b/components/layout_2020/flow/mod.rs @@ -1,6 +1,7 @@ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ +#![allow(rustdoc::private_intra_doc_links)] //! Flow layout, also known as block-and-inline layout. |