Skip to content

Commit 7c16eb7

Browse files
authored
Merge pull request #1143 from pat-rogers/master
Swap order of two word ("is it" => "it is")
2 parents 68f9580 + 827dfca commit 7c16eb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/courses/ada-idioms/chapters/abstract_data_types.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ types in the same package.
144144
Any form of private type is allowed with this idiom: basic private types,
145145
tagged/abstract/limited private types, private type extensions, and so forth.
146146
What's important is that the representation occurs in the private part so that
147-
is it not compile-time visible to clients.
147+
it is not compile-time visible to clients.
148148

149149
The abstraction's operations will consist of subprograms that each have a
150150
formal parameter of the type. Clients will declare objects of the type and pass

0 commit comments

Comments
 (0)