diff options
| author | flysand7 <thebumboni@gmail.com> | 2024-08-27 08:06:11 +1100 |
|---|---|---|
| committer | flysand7 <thebumboni@gmail.com> | 2024-08-27 08:06:11 +1100 |
| commit | 1a4faff9c97594e5f2150dff42313779d760bbcc (patch) | |
| tree | 74b59a37d924cf3a5321fc5b54b34459333e4ec5 | |
| parent | 3119e0489fbd9c9c2c4010c500d03c66128d177b (diff) | |
[os2/process]: Fix typo on doc comments
| -rw-r--r-- | core/os/os2/process.odin | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/os/os2/process.odin b/core/os/os2/process.odin index a43ebc8d7..428506c45 100644 --- a/core/os/os2/process.odin +++ b/core/os/os2/process.odin @@ -169,7 +169,7 @@ Process_Info :: struct { Use `free_process_info` to free the memory allocated by this procedure. The `free_process_info` procedure needs to be called, even if this procedure - returned an error, as some of the fields have been allocated. + returned an error, as some of the fields may have been allocated. **Note**: The resulting information may or may contain the fields specified by the `selection` parameter. Always check whether the returned @@ -190,7 +190,7 @@ process_info_by_pid :: proc(pid: int, selection: Process_Info_Fields, allocator: Use `free_process_info` to free the memory allocated by this procedure. The `free_process_info` procedure needs to be called, even if this procedure - returned an error, as some of the fields have been allocated. + returned an error, as some of the fields may have been allocated. **Note**: The resulting information may or may contain the fields specified by the `selection` parameter. Always check whether the returned @@ -210,7 +210,7 @@ process_info_by_handle :: proc(process: Process, selection: Process_Info_Fields, Use `free_process_info` to free the memory allocated by this procedure. The `free_process_info` procedure needs to be called, even if this procedure - returned an error, as some of the fields have been allocated. + returned an error, as some of the fields may have been allocated. **Note**: The resulting information may or may contain the fields specified by the `selection` parameter. Always check whether the returned |