Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
LebJe committed Dec 3, 2020
1 parent 7f648d5 commit 979e1ff
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,12 @@ public struct LFSPointer {
/// The size of the converted file.
public let size: Int
/// The name of the file.
public let filename: String
/// The full path of the file.
public let filePath: String
/// String representation of this pointer.
public var stringRep: String {
Expand Down Expand Up @@ -217,7 +223,7 @@ The search types available are:
.all
```
That function returns an array of `LFSPointers`.
That function returns an array of `LFSPointer`s.
#### Writing Pointers
After you generate a pointer, write it to a file using:
Expand Down
2 changes: 1 addition & 1 deletion Sources/LFSPointersKit/Pointers.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public struct LFSPointer: Codable, Equatable, Hashable {
/// The size of the converted file.
public let size: Int

/// The filename of the file.
/// The name of the file.
public let filename: String

/// The full path of the file.
Expand Down

0 comments on commit 979e1ff

Please sign in to comment.