about summary refs log tree commit diff
path: root/library/std/src/sys_common/net
AgeCommit message (Collapse)AuthorLines
2025-02-02std: move network code into `sys`joboet-19/+0
As per #117276, this PR moves `sys_common::net` and the `sys::pal::net` into the newly created `sys::net` module. In order to support #135141, I've moved all the current network code into a separate `connection` module, future functions like `hostname` can live in separate modules. I'll probably do a follow-up PR and clean up some of the actual code, this is mostly just a reorganization.
2023-03-03Match unmatched backticks in library/est31-1/+1
2022-03-10Use implicit capture syntax in format_argsT-O-R-U-S-1/+1
This updates the standard library's documentation to use the new syntax. The documentation is worthwhile to update as it should be more idiomatic (particularly for features like this, which are nice for users to get acquainted with). The general codebase is likely more hassle than benefit to update: it'll hurt git blame, and generally updates can be done by folks updating the code if (and when) that makes things more readable with the new format. A few places in the compiler and library code are updated (mostly just due to already having been done when this commit was first authored).
2020-08-31std: move "mod tests/benches" to separate filesLzu Tao-0/+19
Also doing fmt inplace as requested.