Doc fixes

This commit is contained in:
Matthias Koefferlein 2024-04-30 17:45:56 +02:00
parent e3f776a74e
commit 05c129dd81
2 changed files with 3 additions and 3 deletions

View File

@ -218,12 +218,12 @@ LibraryClass decl_Library ("db", "Library",
) +
gsi::method ("is_for_technology", &db::Library::is_for_technology, gsi::arg ("tech"),
"@brief Returns a value indicating whether the library is associated with the given technology.\n"
"The method is equivalent to checking whether the \\technologies list is empty.\n"
"\n"
"This method has been introduced in version 0.27"
) +
gsi::method ("for_technologies", &db::Library::for_technologies,
"@brief Returns a value indicating whether the library is associated with any technology.\n"
"The method is equivalent to checking whether the \\technologies list is empty.\n"
"\n"
"This method has been introduced in version 0.27"
) +
gsi::method ("technologies", &db::Library::get_technologies,

View File

@ -360,10 +360,10 @@ gsi::Class<EditorHooksImpl> decl_EditorHooks ("lay", "EditorHooks",
) +
gsi::method ("is_for_technology", &EditorHooksImpl::is_for_technology, gsi::arg ("tech"),
"@brief Returns a value indicating whether the hooks are associated with the given technology.\n"
"The method is equivalent to checking whether the \\technologies list is empty.\n"
) +
gsi::method ("for_technologies", &EditorHooksImpl::for_technologies,
"@brief Returns a value indicating whether the hooks are associated with any technology.\n"
"The method is equivalent to checking whether the \\technologies list is empty.\n"
) +
gsi::method ("technologies", &EditorHooksImpl::get_technologies,
"@brief Gets the list of technologies these hooks are associated with.\n"