Skip to content

Commit

Permalink
Fixed header docs for new features
Browse files Browse the repository at this point in the history
  • Loading branch information
mpenick committed Mar 14, 2016
1 parent c78a1d5 commit 6f72bb8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 195,7 @@ TAB_SIZE = 4
# will result in a user-defined paragraph with heading "Side Effects:".
# You can put \n's in the value part of an alias to insert newlines.

ALIASES =
ALIASES = cassandra{1}="<b>Requires Cassandra:</b> \1"

# This tag can be used to specify a number of word-keyword mappings (TCL only).
# A mapping has the form "name=value". For example adding
Expand Down
14 changes: 7 additions & 7 deletions include/cassandra.h
Original file line number Diff line number Diff line change
Expand Up @@ -1388,16 1388,16 @@ cass_cluster_set_whitelist_dc_filtering(CassCluster* cluster,
* @public @memberof CassCluster
*
* @param[in] cluster
* @param[in] hosts
* @param[in] hosts_length
* @param[in] dcs
* @param[in] dcs_length
* @return same as cass_cluster_set_whitelist_dc_filtering()
*
* @see cass_cluster_set_whitelist_dc_filtering()
*/
CASS_EXPORT void
cass_cluster_set_whitelist_dc_filtering_n(CassCluster* cluster,
const char* dcs,
size_t hosts_length);
size_t dcs_length);

/**
* Same as cass_cluster_set_blacklist_filtering(), but blacklist all hosts of a dc
Expand All @@ -1422,16 1422,16 @@ cass_cluster_set_blacklist_dc_filtering(CassCluster* cluster,
* @public @memberof CassCluster
*
* @param[in] cluster
* @param[in] hosts
* @param[in] hosts_length
* @param[in] dcs
* @param[in] dcs_length
* @return same as cass_cluster_set_blacklist_dc_filtering()
*
* @see cass_cluster_set_blacklist_dc_filtering()
*/
CASS_EXPORT void
cass_cluster_set_blacklist_dc_filtering_n(CassCluster* cluster,
const char* dcs,
size_t hosts_length);
size_t dcs_length);

/**
* Enable/Disable Nagel's algorithm on connections.
Expand Down Expand Up @@ -7634,7 7634,7 @@ cass_iterator_indexes_from_table_meta(const CassTableMeta* table_meta);
*
* @public @memberof CassTableMeta
*
* @param[in] view_meta
* @param[in] table_meta
* @return A new iterator that must be freed.
*
* @see cass_iterator_get_materialized_view_meta()
Expand Down

0 comments on commit 6f72bb8

Please sign in to comment.