From ad6d2b4619ed17fc108e504c586288135c27cc07 Mon Sep 17 00:00:00 2001 From: AleksanderBodurri Date: Sun, 31 May 2020 23:13:00 -0400 Subject: [PATCH] docs(core): fix path referenced in comments of both compiler facade interface files (#37370) Previously the comments for these files referenced a path to "packages/core/src/render3/jit/compiler_facade_interface.ts" that does not exist in the current codebase. This PR corrects the path in these comments. PR Close #37370 --- packages/compiler/src/compiler_facade_interface.ts | 4 ++-- packages/core/src/compiler/compiler_facade_interface.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/compiler/src/compiler_facade_interface.ts b/packages/compiler/src/compiler_facade_interface.ts index c445704aaa..94e9a87fe9 100644 --- a/packages/compiler/src/compiler_facade_interface.ts +++ b/packages/compiler/src/compiler_facade_interface.ts @@ -13,12 +13,12 @@ * * This file has two copies. Please ensure that they are in sync: * - packages/compiler/src/compiler_facade_interface.ts (master) - * - packages/core/src/render3/jit/compiler_facade_interface.ts (copy) + * - packages/core/src/compiler/compiler_facade_interface.ts (copy) * * Please ensure that the two files are in sync using this command: * ``` * cp packages/compiler/src/compiler_facade_interface.ts \ - * packages/core/src/render3/jit/compiler_facade_interface.ts + * packages/core/src/compiler/compiler_facade_interface.ts * ``` */ diff --git a/packages/core/src/compiler/compiler_facade_interface.ts b/packages/core/src/compiler/compiler_facade_interface.ts index c445704aaa..94e9a87fe9 100644 --- a/packages/core/src/compiler/compiler_facade_interface.ts +++ b/packages/core/src/compiler/compiler_facade_interface.ts @@ -13,12 +13,12 @@ * * This file has two copies. Please ensure that they are in sync: * - packages/compiler/src/compiler_facade_interface.ts (master) - * - packages/core/src/render3/jit/compiler_facade_interface.ts (copy) + * - packages/core/src/compiler/compiler_facade_interface.ts (copy) * * Please ensure that the two files are in sync using this command: * ``` * cp packages/compiler/src/compiler_facade_interface.ts \ - * packages/core/src/render3/jit/compiler_facade_interface.ts + * packages/core/src/compiler/compiler_facade_interface.ts * ``` */