Improve documentation for rfind_str()

This commit is contained in:
Jon Siwek 2020-09-01 17:53:55 -07:00
parent a7b905d389
commit d99c5aaf7d
3 changed files with 9 additions and 3 deletions

View file

@ -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)

View file

@ -1 +1 @@
3.3.0-dev.224
3.3.0-dev.226

View file

@ -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.