From e8dbba417d174eed72748802683b01d47c96fac2 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) (#28423) PR Close #26627 PR Close #28423 --- 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 339798e416..fb410dccc3 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.