diff --git a/README.md b/README.md
index 0b9b7bf..53f50f2 100644
--- a/README.md
+++ b/README.md
@@ -117,7 +117,7 @@ The namespace exposes the following string manipulation functions:
- [`splitGraphemeClusters( str )`][@stdlib/string/split-grapheme-clusters]: split a string by its grapheme cluster breaks.
- [`startcase( str )`][@stdlib/string/startcase]: capitalize the first letter of each word in a string.
- [`startsWith( str, search[, position] )`][@stdlib/string/starts-with]: test if a string starts with the characters of another string.
-- [`substringAfterLast`][@stdlib/string/substring-after-last]: return the part of a string after the last occurrence of a specified substring.
+- [`substringAfterLast( str, search[, fromIndex] )`][@stdlib/string/substring-after-last]: return the part of a string after the last occurrence of a specified substring.
- [`substringAfter( str, search[, fromIndex] )`][@stdlib/string/substring-after]: return the part of a string after a specified substring.
- [`substringBeforeLast( str, search )`][@stdlib/string/substring-before-last]: return the part of a string before the last occurrence of a specified substring.
- [`substringBefore( str, search )`][@stdlib/string/substring-before]: return the part of a string before a specified substring.