From 197676a6ddeb6cd0a4cdb00bd23006e2745c81cf Mon Sep 17 00:00:00 2001 From: Giorgos Bamparopoulos Date: Sat, 20 Oct 2018 23:44:55 +0100 Subject: [PATCH] docs: rename "internal" access modifier to "protected" (#26627) PR Close #26627 --- aio/content/guide/aot-compiler.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/aot-compiler.md b/aio/content/guide/aot-compiler.md index dd0bed2019..8ff451c07f 100644 --- a/aio/content/guide/aot-compiler.md +++ b/aio/content/guide/aot-compiler.md @@ -453,7 +453,7 @@ The compiler understands all syntax forms that the _collector_ supports, but it The compiler can only reference _exported symbols_. -Decorated component class members must be public. You cannot make an `@Input()` property private or internal. +Decorated component class members must be public. You cannot make an `@Input()` property private or protected. Data bound properties must also be public.