Skip to content

Commit ed52a1e

Browse files
committed
hand fix english translation
1 parent 0a4a591 commit ed52a1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/text_en/basic.re

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1233,7 +1233,7 @@ TrimExcess @<m>{O(n)}
12331233
@<code>{Stack<T>} is a collection class that implements the last in first out (LIFO) method: last in first out.
12341234
@<code>{Stack<T>} is implemented as an array. @<code>{Push} The first element is added with @<code>{Pop}, and the first element is removed with .
12351235
@<code>{Peek} is an operation to take out the first element without deleting it.
1236-
A common use of is when implementing screen transitions, where the scene information for the destination of the transition is stored in @<code>{Push}, and when the back button is pressed, the scene information is stored in .
1236+
A common use of is when implementing screen transitions, where the scene information for the destination of the transition is stored in @<code>{Push}, and when the back button is pressed, retrieving the scene information by @<code>{Pop}.
12371237
As with @<code>{Queue}, high performance can be obtained by using only @<code>{Push} and @<code>{Pop} for @<code>{Stack}. Be careful not to search for elements, and be careful to increase or decrease capacity.
12381238
12391239
//table[collection_stack][Stack<T>]{

0 commit comments

Comments
 (0)