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 98ff035 commit 1b170feCopy full SHA for 1b170fe
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