From 370f1c380c3f025103f88fce1eaf0e0d990eb7e4 Mon Sep 17 00:00:00 2001 From: Anton Troynikov Date: Thu, 20 Aug 2020 17:22:30 -0700 Subject: [PATCH] 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 --- docs/notes/renderer.md | 2 +- docs/notes/renderer_getting_started.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/notes/renderer.md b/docs/notes/renderer.md index 47d3bfe7..9954a5fd 100644 --- a/docs/notes/renderer.md +++ b/docs/notes/renderer.md @@ -23,7 +23,7 @@ Our implementation decouples the rasterization and shading steps of rendering. T ## Get started -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). ## Key features diff --git a/docs/notes/renderer_getting_started.md b/docs/notes/renderer_getting_started.md index e5260583..f65351df 100644 --- a/docs/notes/renderer_getting_started.md +++ b/docs/notes/renderer_getting_started.md @@ -3,7 +3,7 @@ hide_title: true sidebar_label: Getting Started --- -# Renderer Getting Started +# Getting Started With Renderer ### Architecture Overview