Skip to content

Commit

Permalink
community: edit README.md file
Browse files Browse the repository at this point in the history
  • Loading branch information
OneLiL05 committed Sep 5, 2023
1 parent faa81e8 commit c44c66f
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const nurekit = new Nurekit()

## Contributing

If you want to contribute to improving the project, firstly read [CONTIRBUTING.md](https://github.com/OneLiL05/nurekit/blob/main/CONTIRBUTING.md)
If you want to contribute to improving the project, firstly read [CONTIRBUTING.md](https://github.com/OneLiL05/nurekit/blob/main/CONTRIBUTING.md)

## Methods

Expand Down Expand Up @@ -55,7 +55,7 @@ import { Nurekit } from "@nurejs/api"

const nurekit = new Nurekit()

const auditories = await nurekit.auditoriums.findOne({ name: "285" })
const auditories = await nurekit.auditoriums.findOne("285")
```

**Input:**
Expand Down Expand Up @@ -107,7 +107,7 @@ import { Nurekit } from "@nurejs/api"

const nurekit = new Nurekit()

const groups = await nurekit.groups.findOne({ name: "пзпі-23-5" })
const groups = await nurekit.groups.findOne("пзпі-23-5")
```

**Input:**
Expand Down Expand Up @@ -162,15 +162,13 @@ import { Nurekit } from "@nurejs/api"

const nurekit = new Nurekit()

const teachers = await nurekit.teachers.findOne({ shortName: "Боцюра О. А." })
const teachers = await nurekit.teachers.findOne("Боцюра О. А.")
```

**Input:**

```ts
{
shortName: string;
}
shortName: string;
```

**Output:**
Expand Down

0 comments on commit c44c66f

Please sign in to comment.