Skip to content

Commit c77b8d5

Browse files
authored
Update README.md
1 parent ac809fa commit c77b8d5

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

README.md

+7-8
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ An official asynchronous JavaScript (Node.js) wrapper for MC-Market's [Ultimate
99
* A comprehensive set of usage examples.
1010
* Heavily commented making contributions painless.
1111

12-
## Installation & Basic Initialisation
12+
## Installation & Basic Usage
1313
Install via `npm`:
1414
```
1515
npm i mcm-js-api-wrapper
@@ -36,19 +36,18 @@ const wrapper = require("mcm-js-api-wrapper");
3636
const token = {type: "Private", value: "xXoIjvQ6G8UmUPufZWxN-Kkyd54Js_bY"};
3737
...
3838

39-
let build = await wrapper.init(token);
40-
if (build.result === "error") {
41-
console.log(build.error);
39+
let init = await wrapper.init(token);
40+
if (init.result === "error") {
41+
console.log(init.error);
4242
process.exit(0);
4343
}
4444

4545
console.log(await wrapper.members.self());
4646
```
4747

48-
## Usage
49-
https://github.com/Majored/mcm-js-api-wrapper/blob/main/USAGE.md
48+
A full list of functions and their signatures can be found [here](https://github.com/MC-Market-org/mcm-js-api-wrapper/blob/main/USAGE.md).
5049

5150
## Issues & Support
52-
Whether you're wanting to report a bug you've come across during use of this wrapper or are seeking general help/assistance, please utilise the [issues tracker](https://github.com/Majored/mcm-js-api-wrapper/issues) and tag your issue appropriately during creation.
51+
The [issues tracker](https://github.com/MC-Market-org/mcm-js-api-wrapper/issues) for this repository should only be used to report bugs or issues with this official JS wrapper.
5352

54-
I try to respond to issues as fast as possible.
53+
For bugs or issues related to the Ultimate API itself, please open a [support ticket](https://www.mc-market.org/tickets/new) or create a [bug report](https://www.mc-market.org/suggestions/create-thread) on our platform.

0 commit comments

Comments
 (0)