Skip to content

Commit a0cfcaf

Browse files
committed
Fix for text that is clipped off edge of slide
1 parent bae8f36 commit a0cfcaf

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

courses/fundamentals_of_ada/adv_120_advanced_privacy.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,10 @@ Private Primitives
174174
175175
package P is
176176
type T is private;
177-
procedure Execute (Obj : T) is abstract; -- abstract must be public
178-
function Make return T; -- constructor must be public
177+
-- abstract must be public
178+
procedure Execute (Obj : T) is abstract;
179+
-- constructor must be public
180+
function Make return T;
179181
private
180182
procedure Internal_Reset (Obj : T); -- can be private
181183
end package P;

0 commit comments

Comments
 (0)