From d99c5aaf7d0dbd63e8aa0d45f9dbc3a8c51ab0db Mon Sep 17 00:00:00 2001 From: Jon Siwek Date: Tue, 1 Sep 2020 17:53:55 -0700 Subject: [PATCH] Improve documentation for rfind_str() --- CHANGES | 6 ++++++ VERSION | 2 +- src/strings.bif | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 1cc8c2f845..23c68a714a 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,10 @@ +3.3.0-dev.226 | 2020-09-01 17:53:55 -0700 + + * Improve documentation for rfind_str() (Jon Siwek, Corelight) + + * GH-1149: Add GitHub Action to automate generation of zeek-docs (Jon Siwek, Corelight) + 3.3.0-dev.224 | 2020-09-01 11:57:44 -0700 * Reformat strings.bif Zeekygen comments to fix Sphinx warnings (Jon Siwek, Corelight) diff --git a/VERSION b/VERSION index f918cbde66..c2e6dfac78 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.3.0-dev.224 +3.3.0-dev.226 diff --git a/src/strings.bif b/src/strings.bif index 82da94edf4..c2c90e5059 100644 --- a/src/strings.bif +++ b/src/strings.bif @@ -1238,8 +1238,8 @@ function find_str%(str: string, sub: string, start: count &default=0, end: int & return zeek::val_mgr->Int(do_find_str(str, sub, start, end, false)); %} -## The same as find(), but returns the highest index matching the substring -## instead of the smallest. +## The same as :zeek:see:`find_str`, but returns the highest index matching +## the substring instead of the smallest. ## ## str: The string to search in. ## substr: The string to search for.