diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2024-09-04 21:37:48 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-04 21:37:48 +0100 |
| commit | a4fd0c133e824e349f830cad171d46fc210faab4 (patch) | |
| tree | 8c869bc49609d68c5cd9e4e53a2b2f03b92f6297 /core/encoding/csv/reader.odin | |
| parent | ce018b4e6fc21356f5236449d90712fc5d0adc3e (diff) | |
| parent | 288312a8126d71fae26c9d62a8cd342d830e1c5f (diff) | |
Merge pull request #4191 from laytan/improve-package-doc-comments
core: improve package doc comments for the documentation generator
Diffstat (limited to 'core/encoding/csv/reader.odin')
| -rw-r--r-- | core/encoding/csv/reader.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/encoding/csv/reader.odin b/core/encoding/csv/reader.odin index ebc7b39a0..5348624d5 100644 --- a/core/encoding/csv/reader.odin +++ b/core/encoding/csv/reader.odin @@ -1,5 +1,5 @@ // package csv reads and writes comma-separated values (CSV) files. -// This package supports the format described in RFC 4180 <https://tools.ietf.org/html/rfc4180.html> +// This package supports the format described in [[ RFC 4180; https://tools.ietf.org/html/rfc4180.html ]] package encoding_csv import "core:bufio" @@ -484,4 +484,4 @@ _read_record :: proc(r: ^Reader, dst: ^[dynamic]string, allocator := context.all r.fields_per_record = len(dst) } return dst[:], err -}
\ No newline at end of file +} |