We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bae8f36 commit a0cfcafCopy full SHA for a0cfcaf
courses/fundamentals_of_ada/adv_120_advanced_privacy.rst
@@ -174,8 +174,10 @@ Private Primitives
174
175
package P is
176
type T is private;
177
- procedure Execute (Obj : T) is abstract; -- abstract must be public
178
- function Make return T; -- constructor must be public
+ -- abstract must be public
+ procedure Execute (Obj : T) is abstract;
179
+ -- constructor must be public
180
+ function Make return T;
181
private
182
procedure Internal_Reset (Obj : T); -- can be private
183
end package P;
0 commit comments