Update wrapper docs

This commit is contained in:
Richard Feldman 2022-07-13 11:58:18 -04:00
parent aad922251d
commit 55ca75a37f
No known key found for this signature in database
GPG key ID: 7E4127D1E4241798

View file

@ -1813,7 +1813,7 @@ impl<'a> Builtin<'a> {
pub const SET_WORDS: u32 = Builtin::DICT_WORDS; // Set is an alias for Dict with {} for value
pub const LIST_WORDS: u32 = 3;
/// Layout of collection wrapper for List and Str - a struct of (pointer, length, capacity).
/// Layout of collection wrapper for List, Str, Dict, and Set - a struct of (pointer, length, capacity).
pub const WRAPPER_PTR: u32 = 0;
pub const WRAPPER_LEN: u32 = 1;
pub const WRAPPER_CAPACITY: u32 = 2;