Skip to content

Commit

Permalink
Writing_Native_Bears.rst: Remove :attr: and :class:
Browse files Browse the repository at this point in the history
:attr: and :class: is not supported by rstcheck
  • Loading branch information
jayvdb committed Jun 19, 2019
1 parent 23b9f62 commit 5c73a20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/Developers/Writing_Native_Bears.rst
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ So let's see how you could tell coala which Bears to run before yours:
results = dependency_results[OtherBear.name]
As you can see we have a :attr:`~coalib.bears.Bear.Bear.BEAR_DEPS`
As you can see we have a `coalib.bears.Bear.Bear.BEAR_DEPS`
set which contains a list of bears we wish to depend on.
In this case it is a set with 1 item: "OtherBear".

Expand Down Expand Up @@ -380,7 +380,7 @@ Let's see how we can use HiddenResults in our Bear:
yield HiddenResult(self, ["Some Content", "Some Other Content"])
Here we see that this Bear (unlike normal Bears) yields a
:class:`~coalib.results.HiddenResult` instead of a ``Result``. The first
`coalib.results.HiddenResult` instead of a ``Result``. The first
parameter in ``HiddenResult`` should be the instance of the Bear that yields
this result (in this case ``self``), and second argument should be the content
we want to transfer between the Bears. Here we use a list of strings as content
Expand Down

0 comments on commit 5c73a20

Please sign in to comment.