From c506276eea6eabc6bf5af899b97d4f25d98326c8 Mon Sep 17 00:00:00 2001 From: "Victor M. Alvarez" Date: Thu, 20 Apr 2023 21:21:34 +0200 Subject: [PATCH] Minor fixes to documentation of `yr_notebook_create` --- libyara/notebook.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libyara/notebook.c b/libyara/notebook.c index 4fe4b1f8f2..cc173fd1a9 100644 --- a/libyara/notebook.c +++ b/libyara/notebook.c @@ -68,11 +68,11 @@ struct YR_NOTEBOOK_PAGE }; //////////////////////////////////////////////////////////////////////////////// -// Creates a new notebook. The notebook initially has a single page of the -// specified size, but more pages are created if needed. +// Creates a new notebook. The notebook initially has a single page of size +// min_page_size, but more pages will be created as needed. // // Args: -// page_size: Size of each page in the notebook. +// min_page_size: The minimum size of each page in the notebook. // notebook: Address of a pointer to the newly created notebook. // // Returns: