diff --git a/kitty/shm.py b/kitty/shm.py index 9008b0bf4..530a82223 100644 --- a/kitty/shm.py +++ b/kitty/shm.py @@ -33,9 +33,10 @@ def make_filename(prefix: str) -> str: class SharedMemory: ''' - Create or access randomly named shared memory. + Create or access randomly named shared memory. To create call with empty name and specific size. + To access call with name only. - WARNING: The actual size of the shared memory wmay be larger than the requested size. + WARNING: The actual size of the shared memory may be larger than the requested size. ''' _fd: int = -1 _name: str = ''