mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Improve documentation for rfind_str()
This commit is contained in:
parent
a7b905d389
commit
d99c5aaf7d
3 changed files with 9 additions and 3 deletions
6
CHANGES
6
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)
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
3.3.0-dev.224
|
||||
3.3.0-dev.226
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue