Skip to content
This repository was archived by the owner on Jan 6, 2023. It is now read-only.

Commit 7f3ad24

Browse files
committed
fixes typo in readme
1 parent 102791d commit 7f3ad24

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ JavaSkype requires Java >= 8 to run. You can get this library using Maven by add
2929

3030
## Quick example
3131

32-
This library is Object-oriented: you can use one of the several static functions in the Sound class to get a Sound object, and then call methods on it to get data and metadata. Let's have a look at how to interact with the library.
32+
This library is object-oriented: you can use one of the several static functions in the Sound class to get a Sound object, and then call methods on it to get data and metadata. Let's have a look at how to interact with the library.
3333

3434

3535
There are several ways to get a Sound object (ie decoding MPEG data) :
@@ -42,7 +42,6 @@ Sound sound = Sound.createSound(path); // throws IOException if an error occured
4242
// Getting and decoding a sound from a resource file in your JAR
4343
InputStream in = MyClass.class.getResourceAsStream("/mp3/rick_astley.mp3");
4444
Sound sound = Sound.createSound(in) // throws IOException if an error occured while reading the resource file or decoding its data
45-
}
4645

4746
// You can also decode a sound from a byte array, see the library Javadoc
4847
```
@@ -73,7 +72,7 @@ The only public class is the Sound class.
7372

7473
The javadoc for the API is located at: https://mpeg.delthas.fr/
7574

76-
This API full supports multithread calls, there is no shared static state. For example, if trying to decode multiple MPEG files from a music folder, you are encouraged to use multiple threads.
75+
This API fully supports multithreaded calls, there is no shared static state. For example, if trying to decode multiple MPEG files from a music folder, you are encouraged to use multiple threads.
7776

7877
## Building
7978

0 commit comments

Comments
 (0)