diff --git a/README.md b/README.md index 71c68e5..9149f10 100644 --- a/README.md +++ b/README.md @@ -295,7 +295,7 @@ with my_vcr.use_cassette('test.yml', filter_query_parameters=['api_key']): ``` ### Filter information from HTTP post data -Use the `filter_post_data_parameters` configuration option with a list of query +Use the `filter_post_data_parameters` configuration option with a list of post data parameters to filter. ```python @@ -305,7 +305,7 @@ with my_vcr.use_cassette('test.yml', filter_post_data_parameters=['client_secret ### Custom Request filtering -If neither of these covers your request filtering needs, you can register a callback +If none of these covers your request filtering needs, you can register a callback that will manipulate the HTTP request before adding it to the cassette. Use the `before_record` configuration option to so this. Here is an example that will never record requests to the /login endpoint.