From f09c8d8493311031e45f557bb5cf2b01f3e52155 Mon Sep 17 00:00:00 2001 From: Yili Zhao Date: Fri, 21 Feb 2020 10:33:06 +0800 Subject: [PATCH] Fix a typo --- 01-basic/C-static-library/README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01-basic/C-static-library/README.adoc b/01-basic/C-static-library/README.adoc index a1ea526..49aff30 100644 --- a/01-basic/C-static-library/README.adoc +++ b/01-basic/C-static-library/README.adoc @@ -74,7 +74,7 @@ The meaning of scopes are: * +PRIVATE+ - the directory is added to this target's include directories * +INTERFACE+ - the directory is added to the include directories for any targets that link this library. -* +PUBLIC+ - As above, it is included int his library and also any targets that link this library. +* +PUBLIC+ - As above, it is included in this library and also any targets that link this library. [TIP]