-
Couldn't load subscription status.
- Fork 3
Doc: Fixed typos #16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doc: Fixed typos #16
Conversation
tanryberdi
commented
Jan 6, 2023
- Fixed typos
- change ioutil.ReadAll to io.ReadAll
- Fixed Typos and doc corrections #6
34ac2e4 to
82c626f
Compare
|
@vaguecoder could you please take a look to this PR? |
mux_httpserver_test.go
Outdated
| t.Fatalf("expected a status code of 200, got %v", resp.StatusCode) | ||
| } | ||
| body, err := ioutil.ReadAll(resp.Body) | ||
| body, err := io.ReadAll(resp.Body) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ioutil -> io is a valid change but let's not do it here. We can have another issue+PR for the same. Documentation PRs often don't touch the code parts.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI #17 is created for the same
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
README.md
Outdated
| * Requests can be matched based on URL host, path, path prefix, schemes, header and query values, HTTP methods or using custom matchers. | ||
| * URL hosts, paths and query values can have variables with an optional regular expression. | ||
| * Registered URLs can be built, or "reversed", which helps maintaining references to resources. | ||
| * Registered URLs can be built, or "reversed", which helps to maintaining references to resources. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe it should be either to maintain or in maintaining. Please check.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
82c626f to
4a37f3d
Compare
|
@vaguecoder please take a look 🙏 |
- Fixed typos Signed-off-by: Tanryberdi <tanryberdi@gmail.com>
4a37f3d to
aee0345
Compare
|
rebased from |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
Thanks @tanryberdi Good job |