diff options
author | yui-knk <spiketeika@gmail.com> | 2015-07-24 22:48:21 +0900 |
---|---|---|
committer | yui-knk <spiketeika@gmail.com> | 2015-07-24 22:48:21 +0900 |
commit | 1b6131d38586e907461f53e65faab83adeb2306d (patch) | |
tree | abb0e85620fe6fa708e71ec717b493f85f51890d | |
parent | 0868b4cec92dba5474e9faa12944a66c7f50fd15 (diff) | |
download | rails-1b6131d38586e907461f53e65faab83adeb2306d.tar.gz rails-1b6131d38586e907461f53e65faab83adeb2306d.tar.bz2 rails-1b6131d38586e907461f53e65faab83adeb2306d.zip |
[ci skip] Fix `before_filter` -> `before_action`
-rw-r--r-- | guides/source/api_app.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/api_app.md b/guides/source/api_app.md index 29ca872254..1652d91086 100644 --- a/guides/source/api_app.md +++ b/guides/source/api_app.md @@ -367,7 +367,7 @@ controller modules by default: methods returning `ActionDispatch::Request` and `ActionDispatch::Response` objects. - `ActionController::DataStreaming`: Support for `send_file` and `send_data`. -- `AbstractController::Callbacks`: Support for `before_filter` and friends. +- `AbstractController::Callbacks`: Support for `before_action` and friends. - `ActionController::Instrumentation`: Support for the instrumentation hooks defined by Action Controller (see [the instrumentation guide](active_support_instrumentation.html#action-controller)). |