diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2026-02-14 00:55:21 +0100 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2026-02-14 00:55:21 +0100 |
| commit | d26ad6a0e51a3e02b6d0676eaafda278c39e3197 (patch) | |
| tree | 0f5ab3754e0b11d5eca7b4a242d72b9ba0702a87 | |
| parent | fbfc45a12504666c17b83979f419d67ede9e629f (diff) | |
Update doc line for `core:os` and `core:os/old`.
| -rw-r--r-- | core/os/doc.odin | 7 | ||||
| -rw-r--r-- | core/os/old/doc.odin | 2 |
2 files changed, 4 insertions, 5 deletions
diff --git a/core/os/doc.odin b/core/os/doc.odin index effb5582c..10087a5e1 100644 --- a/core/os/doc.odin +++ b/core/os/doc.odin @@ -1,6 +1,3 @@ -// package os_old provides a platform-independent interface to operating system functionality. -// The design is UNIX-like but with Odin-like error handling. Failing calls return values with a specific error type rather than error number. -// -// The package os_old interface is intended to be uniform across all operating systems. -// Features not generally available appear in the system-specific packages under core:sys/*. +// A cross-platform API for things like `I/O`, intended to be uniform across all operating systems. +// Features not generally available appear in the system-specific packages under `core:sys`. package os diff --git a/core/os/old/doc.odin b/core/os/old/doc.odin new file mode 100644 index 000000000..525c0b96d --- /dev/null +++ b/core/os/old/doc.odin @@ -0,0 +1,2 @@ +// The original implementation of `core:os`, to be removed in Q2 2026. +package os_old
\ No newline at end of file |