Remove errant aliases

Signed-off-by: lucperkins <lucperkins@gmail.com>
This commit is contained in:
lucperkins 2019-04-23 09:29:26 -07:00
parent 2782f091e4
commit 94b5a237e5
21 changed files with 0 additions and 21 deletions

View File

@ -1,7 +1,6 @@
---
layout: guides
title: Authentication
aliases: [/docs/guides/auth.html]
---
<p class="lead">This document provides an overview of gRPC authentication,
including our built-in supported auth mechanisms, how to plug in your own

View File

@ -1,7 +1,6 @@
---
layout: guides
title: Benchmarking
aliases: [/docs/guides/benchmarking.html]
---
<p class="lead">gRPC is designed to support high-performance
open-source RPCs in many languages. This document describes the

View File

@ -1,7 +1,6 @@
---
layout: guides
title: gRPC Concepts
aliases: [/docs/guides/concepts.html]
---
<p class="lead">This document introduces some key gRPC concepts with an overview
of gRPC's architecture and RPC life cycle.</p>

View File

@ -1,7 +1,6 @@
---
layout: guides
title: Error Handling
aliases: [/docs/guides/error.html]
---
<p class="lead"> This page describes how gRPC deals with errors, including gRPC's built-in error codes. Example code in different languages can be found <a href="https://github.com/avinassh/grpc-errors">here</a>.</p>

View File

@ -2,7 +2,6 @@
layout: quickstart
title: Android Java Quickstart
short: Android
aliases: [/docs/quickstart/android.html]
---
<p class="lead">This guide gets you started with gRPC in Android Java with a simple
working example.</p>

View File

@ -2,7 +2,6 @@
layout: quickstart
title: C++ Quick Start
short: C++
aliases: [/docs/quickstart/cpp.html]
---
<p class="lead">This guide gets you started with gRPC in C++ with a simple
working example.</p>

View File

@ -2,7 +2,6 @@
title: C# Quick Start
layout: quickstart
short: C#
aliases: [/docs/quickstart/csharp.html]
---
<p class="lead">This guide gets you started with gRPC in C# with a simple

View File

@ -2,7 +2,6 @@
layout: quickstart
title: Dart Quickstart
short: Dart
aliases: [/docs/quickstart/dart.html]
---
<p class="lead">This guide gets you started with gRPC in Dart with a simple
working example.</p>

View File

@ -2,7 +2,6 @@
title: Go Quick Start
layout: quickstart
short: Go
aliases: [/docs/quickstart/go.html]
---
<p class="lead">This guide gets you started with gRPC in Go with a simple
working example.</p>

View File

@ -2,7 +2,6 @@
layout: quickstart
title: Java Quick Start
short: Java
aliases: [/docs/quickstart/java.html]
---
<p class="lead">This guide gets you started with gRPC in Java with a simple
working example.</p>

View File

@ -2,7 +2,6 @@
title: Node Quick Start
layout: quickstart
short: Node
aliases: [/docs/quickstart/node.html]
---
<p class="lead">This guide gets you started with gRPC in Node with a simple
working example.</p>

View File

@ -2,7 +2,6 @@
layout: quickstart
title: Objective-C Quick Start
short: Objective-C
aliases: [/docs/quickstart/objective-c.html]
---
<p class="lead">This guide gets you started with gRPC on the iOS platform in
Objective-C with a simple working example.</p>

View File

@ -2,7 +2,6 @@
layout: quickstart
title: PHP Quick Start
short: PHP
aliases: [/docs/quickstart/php.html]
---
<p class="lead">This guide gets you started with gRPC in PHP with a simple
working example.</p>

View File

@ -2,7 +2,6 @@
layout: quickstart
title: Python Quick Start
short: Python
aliases: [/docs/quickstart/python.html]
---
<p class="lead">This guide gets you started with gRPC in Python with a simple
working example.</p>

View File

@ -2,7 +2,6 @@
title: Ruby Quick Start
layout: quickstart
short: Ruby
aliases: [/docs/quickstart/ruby.html]
---
<p class="lead">This guide gets you started with gRPC in Ruby with a simple

View File

@ -2,7 +2,6 @@
title: Web Quick Start
layout: quickstart
short: Web
aliases: [/docs/quickstart/web.html]
---
<p class="lead">This guide gets you started with gRPC-Web with a simple
working example from the browser.</p>

View File

@ -2,7 +2,6 @@
bodyclass: docs
headline: Go Generated Code Reference
layout: docs
aliases: [/docs/reference/go/generated-code.html]
---
# Go Generated Code Reference

View File

@ -2,7 +2,6 @@
bodyclass: docs
title: Java Generated Code Reference
layout: docs
aliases: [/docs/reference/java/generated-code.html]
---
# Java Generated Code Reference

View File

@ -2,7 +2,6 @@
bodyclass: docs
layout: docs
headline: Python Generated Code Reference
aliases: [/docs/reference/python/generated-code.html]
---
# Python Generated Code Reference

View File

@ -2,7 +2,6 @@
layout: tutorials
title: Asynchronous Basics - C++
short: Async - C++
aliases: [docs/tutorials/async/helloasync-cpp.html]
type: async
---

View File

@ -3,7 +3,6 @@ layout: tutorials
title: OAuth2 on gRPC - Objective-C
short: Auth - Objective-C
type: auth
aliases: [/docs/tutorials/auth/oauth2-objective-c.html]
---
This example demonstrates how to use OAuth2 on gRPC to make
authenticated API calls on behalf of a user.