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 22f7a38 commit 21a40a9Copy full SHA for 21a40a9
courses/fundamentals_of_ada/290_advanced_data_hiding/04-indefinite_private.rst
@@ -161,4 +161,5 @@ Example: A String Holder (2/2)
161
function Contains (Obj : Info; Str : String) return Boolean
162
is (Obj /= null and then Obj.all = Str);
163
function Equals (Left, Right : Info) return Boolean
164
- is (To_String_Internal (Left) = To_String_Internal (Right));
+ is (To_String_Internal (Left)
165
+ = To_String_Internal (Right));
0 commit comments