Skip to content

Commit 55a6dfc

Browse files
authored
fix: change categories and correct typo (#9)
1 parent 8919a3e commit 55a6dfc

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
name = "qt-json-rs"
33
version = "0.0.0"
44
edition = "2021"
5-
categories = ["json", "qt"]
5+
categories = ["data-structures"]
66
author = "Dominic Heun <dominic.heun@gmx.net>"
77
license-file = "LICENSE"
88
description = "JSON library for QT"
9-
repository = "https://github.com/thedomen/qt-json-rs"
9+
repository = "https://github.com/thedome/qt-json-rs"
1010
homepage = "https://github.com/thedome/qt-json-rs"
1111
exclude = [".idea",".github"]
1212

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33

44
[![codecov](https://codecov.io/gh/TheDome/qt-json-rs/branch/develop/graph/badge.svg?token=7MIOMJ88B1)](https://codecov.io/gh/TheDome/qt-json-rs)
55

6-
A simple parser for the Internal QT Binary JSON data format.
6+
A simple parser for the Internal Qt Binary JSON data format.
77

88
This parser will transform the popular
99
[QTBinary JSON](https://doc.qt.io/qt-6.2/qbinaryjson.html#toBinaryData)
1010
format into usable format for rust applications.
1111

1212
## Use
1313

14-
Simply provida a binary encoded JSON Array to the function and it will parse it into an
14+
Simply provide a binary encoded JSON Array to the function and it will parse it into an
1515
internal JSON structure:
1616

1717
```rust
@@ -33,7 +33,7 @@ fn main(){
3333

3434
## Disclaimer
3535

36-
This library has been widely created by looking at the QT source code and performing reverse
36+
This library has been created by looking at the Qt source code and performing reverse
3737
engineering.
38-
There is a possibility that the code will not work with other Version of QT JSON documents.
38+
There is a possibility that the code will not work with other Version of Qt JSON documents.
3939
Any help with this library is welcome.

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
//!
22
//! [![codecov](https://codecov.io/gh/TheDome/qt-json-rs/branch/develop/graph/badge.svg?token=7MIOMJ88B1)](https://codecov.io/gh/TheDome/qt-json-rs)
33
//!
4-
//! A simple parser for the Internal QT Binary JSON data format.
4+
//! A simple parser for the Internal Qt Binary JSON data format.
55
//!
66
//! This parser will transform the popular
77
//! [QTBinary JSON](https://doc.qt.io/qt-6.2/qbinaryjson.html#toBinaryData)
88
//! format into usable format for rust applications.
99
//!
1010
//! # Use
1111
//!
12-
//! Simply provida a binary encoded JSON Array to the function and it will parse it into an
12+
//! Simply provide a binary encoded JSON Array to the function and it will parse it into an
1313
//! internal JSON structure:
1414
//!
1515
//! ```rust
@@ -31,9 +31,9 @@
3131
//!
3232
//! # Disclaimer
3333
//!
34-
//! This library has been widely created by looking at the QT source code and performing reverse
34+
//! This library has been created by looking at the Qt source code and performing reverse
3535
//! engineering.
36-
//! There is a possibility that the code will not work with other Version of QT JSON documents.
36+
//! There is a possibility that the code will not work with other Version of Qt JSON documents.
3737
//! Any help with this library is welcome.
3838
3939
extern crate log;

0 commit comments

Comments
 (0)