@@ -17,7 +17,7 @@ to read the data, so will everyone else.
17
17
18
18
You can restrict read access to your contract's state
19
19
by **other contracts **. That is actually the default
20
- unless you declare make your state variables `public `.
20
+ unless you declare make your state variables :code: `public `.
21
21
22
22
Furthermore, you can restrict who can make modifications
23
23
to your contract's state or call your contract's
@@ -140,11 +140,11 @@ Example
140
140
=======
141
141
142
142
In the following example,
143
- the modifier `atStage ` ensures that the function can
143
+ the modifier :code: `atStage ` ensures that the function can
144
144
only be called at a certain stage.
145
145
146
146
Automatic timed transitions
147
- are handled by the modifier `timeTransitions `, which
147
+ are handled by the modifier :code: `timeTransitions `, which
148
148
should be used for all functions.
149
149
150
150
.. note ::
@@ -154,7 +154,7 @@ should be used for all functions.
154
154
it after the latter, so that the new stage is
155
155
taken into account.
156
156
157
- Finally, the modifier `transitionNext ` can be used
157
+ Finally, the modifier :code: `transitionNext ` can be used
158
158
to automatically go to the next stage when the
159
159
function finishes.
160
160
0 commit comments