Navigation Menu

Skip to content

Commit

Permalink
doc: remove garbage ";"
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jun 20, 2014
1 parent 58a9743 commit b6ff27d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/source/reference/api/plugin.rst
Expand Up @@ -25,7 +25,7 @@ Reference
:param name_size: The number of bytes of name. If `name_size` is negative, `name` must be NUL-terminated. `name_size` is computed by `strlen(name)` for the case.
:return: A variable value on success, NULL otherwise.
.. c:function:: grn_obj *grn_plugin_proc_get_var_by_offset(grn_ctx *ctx, grn_user_data *user_data, unsigned int offset);
.. c:function:: grn_obj *grn_plugin_proc_get_var_by_offset(grn_ctx *ctx, grn_user_data *user_data, unsigned int offset)
It gets a variable value from `grn_user_data` by specify the offset position of the variable.
Expand All @@ -41,7 +41,7 @@ Reference
:param name_size: The number of bytes of name. If `name_size` is negative, `name` must be NUL-terminated. `name_size` is computed by `strlen(name)` for the case.
:return: ``GRN_SUCCESS``. It doesn't fail.
.. c:function:: grn_obj * grn_plugin_command_create(grn_ctx *ctx, const char *name, int name_size, grn_proc_func func, unsigned int n_vars, grn_expr_var *vars);
.. c:function:: grn_obj * grn_plugin_command_create(grn_ctx *ctx, const char *name, int name_size, grn_proc_func func, unsigned int n_vars, grn_expr_var *vars)
It creates a command.
Expand Down

0 comments on commit b6ff27d

Please sign in to comment.