Skip to content
This repository was archived by the owner on Apr 9, 2021. It is now read-only.

Commit 93dce48

Browse files
Merge pull request #761 from wilder/master
Write GitHub the standard way
2 parents de76403 + 1d013e8 commit 93dce48

25 files changed

Lines changed: 29 additions & 29 deletions

_includes/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<div class="col-md-5 col-sm-5 col-xs-12 footer-community">
3030
<ul class="toggle">
3131
<p class="right-link-headers">Community</p>
32-
<li><a href="https://github.com/grpc/" target="_blank"><p class="github community-links">Github</p></a></li>
32+
<li><a href="https://github.com/grpc/" target="_blank"><p class="github community-links">GitHub</p></a></li>
3333
<li><a href="https://twitter.com/grpcio" target="_blank"><p class="twitter community-links">Twitter</p></a></li>
3434
<li><a href="https://stackoverflow.com/tags/grpc/" target="_blank"><p class="stack-overflow community-links">Stack Overflow</p></a></li>
3535
<li><a href="https://www.youtube.com/channel/UCrnk1HWelWnYtF78YZX80fg" target="_blank"><p class="youtube community-links">YouTube</p></a></li>

_posts/2015-10-26-principles.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
We’re also taking a big step forward in improving the installation process. Over the past few weeks we’ve rolled out gRPC packages to <a href="https://packages.debian.org/jessie-backports/libgrpc0">Debian Stable/Backports</a>. Installation in most cases is now a two line install using the Debian package and available language specific package managers (<a href="https://search.maven.org/#artifactdetails%7Cio.grpc%7Cgrpc-core%7C0.9.0%7Cjar">maven</a>, <a href="https://pypi.python.org/pypi/grpcio">pip</a>, <a href="https://rubygems.org/gems/grpc">gem</a>, <a href="https://packagist.org/packages/grpc/grpc">composer</a>, <a href="https://pecl.php.net/package/gRPC">pecl</a>, <a href="https://www.npmjs.com/package/grpc">npm</a>, <a href="https://www.nuget.org/packages/Grpc/">nuget</a>, <a href="https://cocoapods.org/pods/gRPC">pod</a>). In addition <a href="https://hub.docker.com/r/grpc/">gRPC docker images</a> are now available on Docker Hub.
1717
</p>
1818
<p>
19-
We’ve updated the <a href="/docs/">documentation</a> on grpc.io to reflect the latest changes and released additional language-specific <a href="/docs/reference/">reference docs</a>. See what’s changed with the Beta release in the release notes on Github for <a href="https://github.com/grpc/grpc-java/releases/tag/v0.9.0">Java</a>, <a href="https://godoc.org/google.golang.org/grpc">Go</a> and <a href="https://github.com/grpc/grpc/releases/tag/release-0_11_0">all other</a> languages.
19+
We’ve updated the <a href="/docs/">documentation</a> on grpc.io to reflect the latest changes and released additional language-specific <a href="/docs/reference/">reference docs</a>. See what’s changed with the Beta release in the release notes on GitHub for <a href="https://github.com/grpc/grpc-java/releases/tag/v0.9.0">Java</a>, <a href="https://godoc.org/google.golang.org/grpc">Go</a> and <a href="https://github.com/grpc/grpc/releases/tag/release-0_11_0">all other</a> languages.
2020
</p>
2121
<p>
2222
In keeping in line with our <a href="{{ site.baseurl }}/blog/principles">principles</a> and goal to enable highly performant and scalable APIs and microservices on top of HTTP/2, in the coming months, the focus of the gRPC project will be to keep improving performance and stability and adding carefully chosen features for production use cases. Documentation will also be clarified and will continue to improve with new examples and guides.

_posts/2016-3-24-pubsub.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ attribution: Originally written by Lisa Carey with help from others at Google.
1212

1313
[Alpha instructions and gRPC code](https://cloud.google.com/pubsub/grpc-overview) are now available for gRPC PubSub in Python and Java.
1414

15-
But what if you want to use this service now with gRPC in another language - C#, say, or Ruby? Once you have a Google account, with a little bit of extra work you can do that too! You can use the tools and the instructions on [our site](/docs/) to generate and use your own gRPC client code from the PubSub service's `.proto` file, available from [Github](https://github.com/googleapis/googleapis/blob/master/google/pubsub/v1/pubsub.proto).
15+
But what if you want to use this service now with gRPC in another language - C#, say, or Ruby? Once you have a Google account, with a little bit of extra work you can do that too! You can use the tools and the instructions on [our site](/docs/) to generate and use your own gRPC client code from the PubSub service's `.proto` file, available from [GitHub](https://github.com/googleapis/googleapis/blob/master/google/pubsub/v1/pubsub.proto).
1616

1717
[Read the full Google Cloud PubSub announcement](https://cloud.google.com/blog/big-data/2016/03/announcing-grpc-alpha-for-google-cloud-pubsub)
1818

_posts/2016-4-4-installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ Python | Linux, Mac, Windows | `pip install grpcio`
2929
Ruby | Linux, Mac, Windows | `gem install grpc`
3030
PHP | Linux, Mac, Windows | `pecl install grpc-beta`
3131
Go | Linux, Mac, Windows | `go get google.golang.org/grpc`
32-
Objective-C | Mac | Runtime source fetched automatically from Github by Cocoapods
32+
Objective-C | Mac | Runtime source fetched automatically from GitHub by Cocoapods
3333
C# | Windows | Install [gRPC NuGet package](https://www.nuget.org/packages/Grpc/) from your IDE (Visual Studio, Monodevelop, Xamarin Studio)
3434
Java | Linux, Mac, Windows | Use our [Maven and Gradle plugins](https://github.com/grpc/grpc-java/blob/master/README.md) that provide gRPC with [statically linked `boringssl`](https://github.com/grpc/grpc-java/blob/master/SECURITY.md#openssl-statically-linked-netty-tcnative-boringssl-static)
3535
C++ | Linux, Mac, Windows | Currently requires [manual build and install](https://github.com/grpc/grpc/blob/{{ site.data.config.grpc_release_tag }}/src/cpp/README.md)
3636

37-
You can find out more about installation in our [Getting Started guide](/docs/#install-grpc) and Github repositories. Do send us your feedback on our [mailing list](https://groups.google.com/forum/#!forum/grpc-io) or file issues on our issue tracker if you run into any problems.
37+
You can find out more about installation in our [Getting Started guide](/docs/#install-grpc) and GitHub repositories. Do send us your feedback on our [mailing list](https://groups.google.com/forum/#!forum/grpc-io) or file issues on our issue tracker if you run into any problems.
3838

_posts/2018-08-15-grpc-with-json.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,5 +226,5 @@ Almost **10x** faster than before! We can still take advantage of gRPC's effici
226226

227227
gRPC lets you use encoders other than Protobuf. It has no dependency on Protobuf and was specially made to work with a wide variety of environments. We can see that with a little extra boilerplate, we can use any encoder we want. While this post only covered JSON, gRPC is compatible with Thrift, Avro, Flatbuffers, Cap’n Proto, and even raw bytes! gRPC lets you be in control of how your data is handled. (We still recommend Protobuf though due to strong backwards compatibility, type checking, and performance it gives you.)
228228

229-
All the code is avaialable on [Github](https://github.com/carl-mastrangelo/kvstore/tree/04-gson-marshaller) if you would like to see a fully working implementation.
229+
All the code is avaialable on [GitHub](https://github.com/carl-mastrangelo/kvstore/tree/04-gson-marshaller) if you would like to see a fully working implementation.
230230

community/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</p>
1515

1616
<section class="community-section">
17-
<h4 class="community-contribute community-title">Contribute on Github</h4>
17+
<h4 class="community-contribute community-title">Contribute on GitHub</h4>
1818
<p>gRPC has an active community of developers who are using, enhancing and building valuable integrations with other software projects. We are always looking for active contributors in gRPC and gRPC Ecosystem. Here are a few areas where we would love community contribution in grpc project. Be sure to follow our <a href="{{ site.baseurl }}/contribute">community addition guidelines</a>.</p>
1919

2020
<div class="contribute-wrapper nofloat col-lg-9 col-md-10 col-sm-12">

docs/guides/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ time, our examples use a new flavor of protocol buffers called proto3, which
9595
has a slightly simplified syntax, some useful new features, and supports
9696
lots more languages. This is currently available in Java, C++, Python,
9797
Objective-C, C#, a lite-runtime (Android Java), Ruby, and JavaScript from the
98-
[protocol buffers Github repo](https://github.com/google/protobuf/releases),
99-
as well as a Go language generator from the [golang/protobuf Github
98+
[protocol buffers GitHub repo](https://github.com/google/protobuf/releases),
99+
as well as a Go language generator from the [golang/protobuf GitHub
100100
repo](https://github.com/golang/protobuf), with more languages
101101
in development. You can find out more in the [proto3 language
102102
guide](https://developers.google.com/protocol-buffers/docs/proto3) and the

docs/quickstart/android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ local (non-Android) computer.
2828
## Download the example
2929

3030
You'll need a local copy of the example code to work through this quickstart.
31-
Download the example code from our Github repository (the following command
31+
Download the example code from our GitHub repository (the following command
3232
clones the entire repository, but you just need the examples for this quickstart
3333
and other tutorials):
3434

docs/quickstart/csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You will also need Git to download the sample code.
2828
## Download the example
2929

3030
You'll need a local copy of the example code to work through this quickstart.
31-
Download the example code from our Github repository (the following command
31+
Download the example code from our GitHub repository (the following command
3232
clones the entire repository, but you just need the examples for this quickstart
3333
and other tutorials):
3434

docs/quickstart/dart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ $ export PATH=$PATH:$HOME/.pub-cache/bin
5454
## Download the example
5555

5656
You'll need a local copy of the example code to work through this quickstart.
57-
Download the example code from our Github repository (the following command
57+
Download the example code from our GitHub repository (the following command
5858
clones the entire repository, but you just need the examples for this quickstart
5959
and other tutorials):
6060

0 commit comments

Comments
 (0)