From fe2fc88554b26b7357e7ca3afc0d3ce1fe775f80 Mon Sep 17 00:00:00 2001 From: Gloria Date: Tue, 25 Apr 2023 17:44:35 +0800 Subject: [PATCH] fixed f9ef483 from https://gitee.com/wusongqing/docs/pulls/17675 Update docs against 16737 Signed-off-by: wusongqing --- en/application-dev/napi/drawing-guidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/application-dev/napi/drawing-guidelines.md b/en/application-dev/napi/drawing-guidelines.md index a48a081a3e..22d85aec0f 100644 --- a/en/application-dev/napi/drawing-guidelines.md +++ b/en/application-dev/napi/drawing-guidelines.md @@ -189,7 +189,7 @@ The following steps describe how to use the text drawing and display feature of OH_Drawing_CreateFontCollection()); OH_Drawing_TypographyHandlerPushTextStyle(handler, txtStyle); // Set the text content. - const char* text = "OpenHarmony\n"; + const char* text = "Hello World\n"; OH_Drawing_TypographyHandlerAddText(handler, text); OH_Drawing_TypographyHandlerPopTextStyle(handler); OH_Drawing_Typography* typography = OH_Drawing_CreateTypography(handler); -- GitLab