Skip to content

Commit 36e00e0

Browse files
authored
Fixed typos in Readme.adoc (#366)
Pull request: #366
1 parent 40bc124 commit 36e00e0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Readme.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ If you use OS-Lib and like it, you will probably enjoy the following book by the
5959

6060
* https://www.handsonscala.com/[_Hands-on Scala Programming_]
6161
62-
_Hands-on Scala_ has uses OS-Lib extensively throughout the book, and has
62+
_Hands-on Scala_ uses OS-Lib extensively throughout the book, and has
6363
the entirety of _Chapter 7: Files and Subprocesses_ dedicated to
6464
OS-Lib. _Hands-on Scala_ is a great way to level up your skills in Scala
6565
in general and OS-Lib in particular.
@@ -91,7 +91,7 @@ https://javadoc.io/doc/com.lihaoyi/os-lib_3[API Documentation (Scala 3)]
9191

9292
== Cookbook
9393

94-
Most operation in OS-Lib take place on <<os-path>>s, which are
94+
Most operations in OS-Lib take place on <<os-path>>s, which are
9595
constructed from a base path or working directory `wd`. Most often, the first
9696
thing to do is to define a `wd` path representing the folder you want to work
9797
with:
@@ -101,7 +101,7 @@ with:
101101
val wd = os.pwd / "my-test-folder"
102102
----
103103

104-
You can of course multiple base paths, to use in different parts of your program
104+
You can of course have multiple base paths, to use in different parts of your program
105105
where convenient, or simply work with one of the pre-defined paths `os.pwd`,
106106
`os.root`, or `os.home`.
107107

0 commit comments

Comments
 (0)