Fix 404 link in Renderer Doc (#330)

Summary:
Because of the way Sphinx was parsing this link in Markdown, the link wasn't working properly. This should fix it.

Pull Request resolved: https://github.com/facebookresearch/pytorch3d/pull/330

Test Plan: Tested via local Sphinx.

Reviewed By: nikhilaravi

Differential Revision: D23244163

Pulled By: atroyn

fbshipit-source-id: 019712a841d76391a5210dcd98c77a822947204a
This commit is contained in:
Anton Troynikov 2020-08-20 17:22:30 -07:00 committed by Facebook GitHub Bot
parent f03aa5803b
commit 370f1c380c
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ Our implementation decouples the rasterization and shading steps of rendering. T
## <u>Get started</u>
To learn about more the implementation and start using the renderer refer to [renderer_getting_started.md](renderer_getting_started.md), which also contains the [architecture overview](assets/architecture_overview.png) and [coordinate transformation conventions](assets/transformations_overview.png).
To learn about more the implementation and start using the renderer refer to [getting started with renderer](renderer_getting_started.md), which also contains the [architecture overview](assets/architecture_overview.png) and [coordinate transformation conventions](assets/transformations_overview.png).
## <u>Key features</u>

View File

@ -3,7 +3,7 @@ hide_title: true
sidebar_label: Getting Started
---
# Renderer Getting Started
# Getting Started With Renderer
### Architecture Overview