Skip to content

Commit

Permalink
Update documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
LebJe committed Mar 17, 2021
1 parent 4042f4a commit f41c052
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Sources/ArArchiveKit/ArArchiveWriter.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@

/// `ArArchiveWriter` creates `ar` files.
public struct ArArchiveWriter {
/// The raw bytes of the archive.
public var bytes: [UInt8] = []
Expand Down
5 changes: 4 additions & 1 deletion Sources/ArArchiveKit/Header.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
/// The `ar` header, which is placed atop the contents of a file in the archive to provide information such as the size of the file, the file's name, it's permissions, etc.
/// The `ar` header.
///
/// This header is placed atop the contents of a file in the archive to
/// provide information such as the size of the file, the file's name, it's permissions, etc.
public struct Header {
/// The file's name. The name will be truncated to 16 characters.
public let name: String
Expand Down

0 comments on commit f41c052

Please sign in to comment.