summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorRyan Pineo <ryanpineo@gmail.com>2018-03-22 08:00:23 +0100
committerscottb <dharmabumstead@users.noreply.github.com>2018-03-22 08:00:23 +0100
commitfe87869ceca58d082c5ed75f4ca3c9e8d7b6a116 (patch)
tree97ae8bbbcf0835cb232d22eefb23df017fec0d61 /docs
parentImprove ansible-test retries. (diff)
downloadansible-fe87869ceca58d082c5ed75f4ca3c9e8d7b6a116.tar.xz
ansible-fe87869ceca58d082c5ed75f4ca3c9e8d7b6a116.zip
Fix casing on CallbackBase in 2.4 porting guide (#37616)
Diffstat (limited to 'docs')
-rw-r--r--docs/docsite/rst/porting_guides/porting_guide_2.4.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docsite/rst/porting_guides/porting_guide_2.4.rst b/docs/docsite/rst/porting_guides/porting_guide_2.4.rst
index 0a388104d6..e1285e0cd1 100644
--- a/docs/docsite/rst/porting_guides/porting_guide_2.4.rst
+++ b/docs/docsite/rst/porting_guides/porting_guide_2.4.rst
@@ -138,7 +138,7 @@ Users:
Developers:
* If your callback does not inherit from ``CallbackBase`` (directly or indirectly via another callback), it will still work, but issue a deprecation notice.
- To avoid this and ensure it works in the future change it to inherit from ``callbackBase`` so it has the new options handling methods and properties.
+ To avoid this and ensure it works in the future change it to inherit from ``CallbackBase`` so it has the new options handling methods and properties.
You can also implement the new options handling methods and properties but that won't automatically inherit changes added in the future. You can look at ``CallbackBase`` itself and/or ``AnsiblePlugin`` for details.
* Any callbacks inheriting from other callbacks might need to also be updated to contain the same documented options
as the parent or the options won't be available. This is noted in the developer guide.