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

Commit ab0a087

Browse files
committed
Fix typos 🚀
1 parent 96e788d commit ab0a087

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

_posts/2018-05-07-born-id3tageditor-mp3id3tagger.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,7 @@ cover type. But the Media Nav Evolution system of my Renault Clio is able to rea
6666
hour...".
6767
Here we are after two months of work with the public release of:
6868

69-
* `ID3TagEditor`, a pure Swift framework (only Apple `Foundation` framework dependencies) to read/modify ID3 tag of
70-
your mp3 files with support for the following Apple platforms: macOS, iOS, watchOS and macOS
71-
(so the entire Apple ecosystem :grin:)
69+
* `ID3TagEditor`, a pure Swift framework (only Apple `Foundation` framework dependencies) to read/modify ID3 tag of your mp3 files with support for the entire Apple ecosystem (macOS, iOS, watchOS) and Linux :heart_eyes:
7270
* `Mp3ID3Tagger`, a native macOS app written in Swift using the reactive programming paradigm and in particular its
7371
Rx (Reactive Extensions) variant with the frameworks RxSwift and RxCocoa (Rx????!?!?!? WHAT?!?!?!? :cold_sweat:).
7472

_posts/2018-05-08-id3tageditor-swift-read-write-id3-tag-mp3.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ authors: [fabrizio_duroni]
1818

1919
In [this previous post](/2018/05/07/born-id3tageditor-mp3id3tagger.html "born id3tageditor mp3id3tagger") I
2020
described the reason why I developed [ID3TagEditor](https://github.com/chicio/ID3TagEditor "id3 tag editor swift ios
21-
macOS tvOS watchOS"), a swift library to edit ID3 tag of mp3 files with support for macOS, iOS, watchOS and tvOS.
21+
macOS tvOS watchOS linux"), a swift library to edit ID3 tag of mp3 files with support for macOS, iOS, watchOS and tvOS.
2222
In this post I will described how I developed it. Below you can find the library logo.
2323

2424
{% include blog-lazy-image.html description="ID3TagEditor logo" width="1280" height="770" src="/assets/images/posts/id3tageditor-logo.jpg" %}
@@ -35,7 +35,7 @@ This definition means that an ID3 tag is basically a chunk of information stored
3535

3636
{% include blog-lazy-image.html description="ID3 tag example" width="1500" height="917" src="/assets/images/posts/id3-tag-example.jpg" %}
3737

38-
A tag is composed by an header and a series of frames. The tag header has a size of 10 bytes contains the following
38+
A tag is composed of a header and a series of frames. The tag header has a size of 10 bytes contains the following
3939
information (for both v2 and v3):
4040

4141
* ID3 tag file identifier, 3 bytes, usually represented as "ID3"

_posts/2018-05-09-mp3id3tagger-macos-tag-mp3-id3-rxswift-rxcocoa.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ described the reason why I develop [Mp3ID3Tagger](https://github.com/chicio/Mp3I
2222
a macOS app to edit the id3 tag of your mp3 files that leverage on the power of [ID3TagEditor](/2018/05/08/id3tageditor-swift-read-write-id3-tag-mp3.html). Below you can find
2323
the app logo.
2424

25-
![MP3ID3Tagger macOS app RxSwift](/assets/images/posts/mp3id3tagger-logo.jpg "MP3ID3Tagger macOS app RxSwift")
25+
{% include blog-lazy-image.html description="MP3ID3Tagger macOS app RxSwift" width="1280" height="770" src="/assets/images/posts/mp3id3tagger-logo.jpg" %}
2626

2727
So how did I develop MP3ID3Tagger? I was about to start the development following the classic approach to develop
2828
an app on every Apple OS: [Model View Controller](https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller

0 commit comments

Comments
 (0)