Skip to content

Commit 2bd66f7

Browse files
author
Jan Philipp Hafer
committed
prettify top-level doc comment
Thanks, @kcbanner.
1 parent 52ca8be commit 2bd66f7

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

lib/std/os/posix.zig

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
//! This file contains posix abstractions and wrappers around
22
//! OS-specific APIs for conforming platforms, whether libc is or is not linked.
3-
//! Purpose is to have error handling for APIs, which can not have comparable
4-
//! semantics on non-posix systems like Windows.
5-
//! Reasons are besides design failures (signaling, process management) more
6-
//! extensive execution semantics (permission system, memory management, ipc).
3+
//! The purpose of this file is to have error handling for APIs which
4+
//! don't support comparable semantics on non-posix systems like Windows.
5+
//! Reasons are:
6+
//! - Design failures (signaling, process management)
7+
//! - More extensive execution semantics (permission system, memory management, ipc)
78
//! With above restrictions, the same goals as for os.zig apply.
89

910
const std = @import("std");

0 commit comments

Comments
 (0)