Merge pull request #964 from Bara/patch-5

Add missing semicolon
This commit is contained in:
David Anderson 2019-02-19 21:49:07 -08:00 committed by GitHub
commit ae0a03d438
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -179,7 +179,7 @@ methodmap Regex < Handle
// //
// @param match Match to get the offset of. Match starts at 0, and ends at MatchCount() -1 // @param match Match to get the offset of. Match starts at 0, and ends at MatchCount() -1
// @return Offset of the match in the string. // @return Offset of the match in the string.
public native int MatchOffset(int match = 0) public native int MatchOffset(int match = 0);
}; };
/** /**