diff --git a/doc/source/v0.13.0.txt b/doc/source/v0.13.0.txt index 44ef8f0d1a57e..fe6d796d95968 100644 --- a/doc/source/v0.13.0.txt +++ b/doc/source/v0.13.0.txt @@ -428,14 +428,14 @@ Enhancements .. ipython:: python - Series(['a1', 'b2', 'c3']).str.match( + Series(['a1', 'b2', 'c3']).str.extract( '(?P[ab])(?P\d)') and optional groups can also be used. .. ipython:: python - Series(['a1', 'b2', '3']).str.match( + Series(['a1', 'b2', '3']).str.extract( '(?P[ab])?(?P\d)') - ``read_stata`` now accepts Stata 13 format (:issue:`4291`)