Skip to content
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

docs: fix some typos #1852

Merged
merged 1 commit into from
Mar 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Kratos is accessible, powerful, and provides tools required for large, robust ap

Kratos has the most extensive and thorough [documentation](https://go-kratos.dev/en/docs/getting-started/start) and [example](./examples) library of all modern web application frameworks, making it a breeze to get started with the framework.

We also provide a [moderm template](https://github.com/go-kratos/kratos-layout), This template should help reduce the work required to setup up a modern project.
We also provide a [modern template](https://github.com/go-kratos/kratos-layout), This template should help reduce the work required to setup up a modern project.

### Goals

Expand Down
2 changes: 1 addition & 1 deletion api/metadata/metadata.proto
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ option java_package = "com.github.kratos.api";
option objc_class_prefix = "KratosAPI";


// Metadata is api defintion metadata service.
// Metadata is api definition metadata service.
service Metadata {
// ListServices list the full name of all services.
rpc ListServices (ListServicesRequest) returns (ListServicesReply) {
Expand Down
2 changes: 1 addition & 1 deletion examples/http/middlewares/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func main() {
// add global filter
http.Filter(globalFilter, globalFilter2),
)
// register http hanlder to http server
// register http handler to http server
helloworld.RegisterGreeterHTTPServer(httpSrv, s)

// add route filter
Expand Down