Skip to content

Commit

Permalink
Update Docc Content
Browse files Browse the repository at this point in the history
  • Loading branch information
jihoonahn committed Aug 31, 2023
1 parent e911130 commit 679f7ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/PLFile/Documentation.docc/Articles/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ PLFile was deployed as Swift Package Manager. Package to install in a project. A
let package = Package(
...
dependencies: [
.package(url: "https://github.com/Pelagornis/PLFile.git", from: "1.0.2")
.package(url: "https://github.com/pelagornis/plfile.git", from: "1.0.4")
],
...
)
Expand All @@ -25,7 +25,7 @@ PLFile offers the most commonly used Bash and ZSH, which in addition helps users
Path Setting.

```swift
let path = Path("/Users/ji-hoonahn/Desktop/") // example
let path = Path("/Users/pelagornis/Desktop/") // example
```
Easy access Path.
```swift
Expand All @@ -39,7 +39,7 @@ Easily create files and folders
```swift
let path = Path.home
let folder = try! PLFile.Folder(path: path)
let file = try! folder.createFile(at: Path("test.swift"))
let file = try! folder.createFile(at: "test.swift")
try! file.write("print(1)")
```

Expand Down

0 comments on commit 679f7ba

Please sign in to comment.