Skip to content

Commit f454dfe

Browse files
committed
update README v1.10.21
1 parent 1dbd7c0 commit f454dfe

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ _Check out the [examples](/_examples/) directory for more examples._
9898
Get a specific version of `disgo` by specifying a tag or branch.
9999

100100
```
101-
go get github.com/switchupcb/disgo@v1.10.2
101+
go get github.com/switchupcb/disgo@v1.10.21
102102
```
103103

104104
_Disgo branches are referenced by API version (i.e `v10`)._

_contribution/CONTRIBUTING.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ Disgo [fieldaligns](https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/fie
7777

7878
#### Unit Tests
7979

80-
Unit tests are used to test logic.
80+
Unit tests test logic.
8181

8282
#### Integration Tests
8383

84-
Integration tests are used to prove functionality between the API Wrapper and Discord.
84+
Integration tests prove functionality between the API Wrapper and Discord.
8585

8686
| Test | What feature is tested? |
8787
| :------------------ | :------------------------------------------------------- |
@@ -92,14 +92,18 @@ Integration tests are used to prove functionality between the API Wrapper and Di
9292

9393
#### Running Tests
9494

95-
Use `go test` to run the tests in the current directory. Use `go test ./<dir>` to run tests in a given directory (from the current directory). Use [Github Action Workflow Files](/.github/workflows/) to find the correct test command and environment variables for a module.
95+
Use `go test` to run the tests in the current directory.
96+
97+
Use `go test ./<dir>` to run tests in a given directory (from the current directory).
98+
99+
Use [Github Action Workflow Files](/.github/workflows/) to find the correct test command and environment variables for a module.
96100

97101
# Roadmap
98102

99103
Disgo is **STABLE**.
100104

101105
The following additional features are being implemented:
102-
1. [Voice Audio Processing](https://github.com/switchupcb/disgo/issues/72))
106+
1. [Voice Audio Processing](https://github.com/switchupcb/disgo/issues/72)
103107
2. [Cache](https://github.com/switchupcb/disgo/issues/39)
104108

105109
[_Get assigned a feature or example now._](https://github.com/switchupcb/disgo/issues/45)

wrapper/session_routine_coroner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ func (s *Session) Wait() (string, error) {
2828

2929
err := s.manager.coroner.Wait()
3030

31-
return s.State(), err
31+
return s.State(), err //nolint: wrapcheck
3232
}

0 commit comments

Comments
 (0)