@@ -58,15 +58,15 @@ class ICEBERG_EXPORT InMemoryNamespace {
5858 // /
5959 // / \param namespace_ident The namespace to create.
6060 // / \param properties A map of key-value pairs to associate with the namespace.
61- // / \return Status::OK if the namespace is created;
61+ // / \return Status indicating success if the namespace is created;
6262 // / ErrorKind::kAlreadyExists if the namespace already exists.
6363 Status CreateNamespace (const Namespace& namespace_ident,
6464 const std::unordered_map<std::string, std::string>& properties);
6565
6666 // / \brief Deletes an existing namespace.
6767 // /
6868 // / \param namespace_ident The namespace to delete.
69- // / \return Status::OK if the namespace is deleted;
69+ // / \return Status indicating success if the namespace is deleted;
7070 // / ErrorKind::kNoSuchNamespace if the namespace does not exist;
7171 // / ErrorKind::kNotAllowed if the namespace is not empty.
7272 Status DropNamespace (const Namespace& namespace_ident);
@@ -84,7 +84,7 @@ class ICEBERG_EXPORT InMemoryNamespace {
8484 // / \param namespace_ident The namespace to update.
8585 // / \param updates Properties to add or overwrite.
8686 // / \param removals Property keys to remove.
87- // / \return Status::OK if the update is successful;
87+ // / \return Status indicating success if the update is successful;
8888 // / ErrorKind::kNoSuchNamespace if the namespace does not exist;
8989 // / ErrorKind::kUnsupported if the operation is not supported.
9090 Status UpdateNamespaceProperties (
@@ -102,15 +102,15 @@ class ICEBERG_EXPORT InMemoryNamespace {
102102 // /
103103 // / \param table_ident The fully qualified identifier of the table.
104104 // / \param metadata_location The path to the table's metadata.
105- // / \return Status::OK if the table is registered;
105+ // / \return Status indicating success if the table is registered;
106106 // / Error otherwise.
107107 Status RegisterTable (const TableIdentifier& table_ident,
108108 const std::string& metadata_location);
109109
110110 // / \brief Unregisters a table from the specified namespace.
111111 // /
112112 // / \param table_ident The identifier of the table to unregister.
113- // / \return Status::OK if the table is removed;
113+ // / \return Status indicating success if the table is removed;
114114 // / ErrorKind::kNoSuchTable if the table does not exist.
115115 Status UnregisterTable (const TableIdentifier& table_ident);
116116
0 commit comments