Skip to content

Commit 21a40a9

Browse files
committed
align
1 parent 22f7a38 commit 21a40a9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

courses/fundamentals_of_ada/290_advanced_data_hiding/04-indefinite_private.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -161,4 +161,5 @@ Example: A String Holder (2/2)
161161
function Contains (Obj : Info; Str : String) return Boolean
162162
is (Obj /= null and then Obj.all = Str);
163163
function Equals (Left, Right : Info) return Boolean
164-
is (To_String_Internal (Left) = To_String_Internal (Right));
164+
is (To_String_Internal (Left)
165+
= To_String_Internal (Right));

0 commit comments

Comments
 (0)