|
1 | 1 | //! Mono Item Collection
|
2 | 2 | //! ====================
|
3 | 3 | //!
|
4 |
| -//! This module is responsible for discovering all items that will contribute to |
| 4 | +//! This module is responsible for discovering all items that will contribute |
5 | 5 | //! to code generation of the crate. The important part here is that it not only
|
6 | 6 | //! needs to find syntax-level items (functions, structs, etc) but also all
|
7 | 7 | //! their monomorphized instantiations. Every non-generic, non-const function
|
|
79 | 79 | //! function or method call (represented by a CALL terminator in MIR). But
|
80 | 80 | //! calls are not the only thing that might introduce a reference between two
|
81 | 81 | //! function mono items, and as we will see below, they are just a
|
82 |
| -//! specialized of the form described next, and consequently will don't get any |
| 82 | +//! specialization of the form described next, and consequently will not get any |
83 | 83 | //! special treatment in the algorithm.
|
84 | 84 | //!
|
85 | 85 | //! #### Taking a reference to a function or method
|
|
158 | 158 | //! - Eager mode is meant to be used in conjunction with incremental compilation
|
159 | 159 | //! where a stable set of mono items is more important than a minimal
|
160 | 160 | //! one. Thus, eager mode will instantiate drop-glue for every drop-able type
|
161 |
| -//! in the crate, even of no drop call for that type exists (yet). It will |
| 161 | +//! in the crate, even if no drop call for that type exists (yet). It will |
162 | 162 | //! also instantiate default implementations of trait methods, something that
|
163 | 163 | //! otherwise is only done on demand.
|
164 | 164 | //!
|
|
0 commit comments