From 222092e234cd39c4ba564090ccb7bce98aec85fc Mon Sep 17 00:00:00 2001 From: SoftSquirrel Date: Thu, 24 Jul 2025 15:52:38 +0800 Subject: [PATCH] Issue:#ICOJYR Description:add dot Sig: SIG_ApplicaitonFramework Feature or Bugfix:Bugfix Binary Source: No Signed-off-by: SoftSquirrel --- .../bundle/include/native_interface_bundle.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/bundlemanager/bundle_framework/bundle/include/native_interface_bundle.h b/bundlemanager/bundle_framework/bundle/include/native_interface_bundle.h index 9ffbb73b9..4b4d6da16 100644 --- a/bundlemanager/bundle_framework/bundle/include/native_interface_bundle.h +++ b/bundlemanager/bundle_framework/bundle/include/native_interface_bundle.h @@ -80,41 +80,41 @@ struct OH_NativeBundle_ElementName { }; /** - * @brief Indicates information of metadata + * @brief Indicates information of metadata. * * @since 20 */ typedef struct OH_NativeBundle_Metadata { /** - * @brief Indicates the metadata name + * @brief Indicates the metadata name. */ char* name; /** - * @brief Indicates the metadata value + * @brief Indicates the metadata value. */ char* value; /** - * @brief Indicates the metadata resource + * @brief Indicates the metadata resource. */ char* resource; } OH_NativeBundle_Metadata; /** - * @brief Indicates information of module metadata + * @brief Indicates information of module metadata. * * @since 20 */ typedef struct OH_NativeBundle_ModuleMetadata { /** - * @brief Indicates the moduleName of module + * @brief Indicates the moduleName of module. */ char* moduleName; /** - * @brief Indicates the metadata array of module + * @brief Indicates the metadata array of module. */ OH_NativeBundle_Metadata* metadataArray; /** - * @brief Indicates the metadata array size of module + * @brief Indicates the metadata array size of module. */ size_t metadataArraySize; } OH_NativeBundle_ModuleMetadata; -- Gitee