diff options
author | DutchGhost <kasper199914@gmail.com> | 2019-06-06 20:37:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-06 20:37:27 +0200 |
commit | d4d5d998b98b18e0f708dc60d3a753508bd4b570 (patch) | |
tree | 0d09815727a862b4367ee00a3c5e44a7b6834422 | |
parent | 9353bc97187f6171551cbe207a697be9132e8502 (diff) | |
download | servo-d4d5d998b98b18e0f708dc60d3a753508bd4b570.tar.gz servo-d4d5d998b98b18e0f708dc60d3a753508bd4b570.zip |
Update lib.rs
Fix `for` typo in the documentation, should be `fork` instead.
-rw-r--r-- | components/malloc_size_of/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/malloc_size_of/lib.rs b/components/malloc_size_of/lib.rs index d65f8e957e4..f9d3420c32e 100644 --- a/components/malloc_size_of/lib.rs +++ b/components/malloc_size_of/lib.rs @@ -43,7 +43,7 @@ //! measured as well as the thing it points to. E.g. //! `<Box<_> as MallocSizeOf>::size_of(field, ops)`. //! -//! Note: WebRender has a reduced for of this crate, so that we can avoid +//! Note: WebRender has a reduced fork of this crate, so that we can avoid //! publishing this crate on crates.io. extern crate app_units; |