From a917b04e8a154bdf99c0cf148feda9f9b1c2c867 Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Thu, 15 Sep 2022 14:54:20 +0300 Subject: [PATCH] Fix broken links to Appendix (#3319) --- docs/new-architecture-library-intro.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/new-architecture-library-intro.md b/docs/new-architecture-library-intro.md index 0d905261fb7..6bad696566e 100644 --- a/docs/new-architecture-library-intro.md +++ b/docs/new-architecture-library-intro.md @@ -126,8 +126,8 @@ When using Flow or TypeScript, you will be using [type annotations](https://flow In general, this means you can use primitive types (strings, numbers, booleans), and function types, object types, and array types. Union types, on the other hand, are not supported. All types must be read-only. For Flow: either `+` or `$ReadOnly<>` or `{||}` objects. For TypeScript: `readonly` for properties, `Readonly<>` for objects, and `ReadonlyArray<>` for arrays. -> See Appendix [I. Flow Type to Native Type Mapping](#i-flow-type-to-native-type-mapping). -> See Appendix [II. TypeScript to Native Type Mapping](#ii-typescript-to-native-type-mapping). +> See Appendix [II. Flow Type to Native Type Mapping](new-architecture-appendix#ii-flow-type-to-native-type-mapping). +> See Appendix [III. TypeScript to Native Type Mapping](new-architecture-appendix#iii-typescript-to-native-type-mapping). ### Codegen Helper Types