From 765460b62f76eb1e1edd0624d0a2c504c85b1dab Mon Sep 17 00:00:00 2001 From: Robert Balent Date: Tue, 22 Jan 2019 16:54:40 -0800 Subject: [PATCH] Java-Arrays: Nested loop will execute M * N times (#32293) --- guide/english/java/arrays/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/java/arrays/index.md b/guide/english/java/arrays/index.md index 6a93c46767..e8b7160216 100644 --- a/guide/english/java/arrays/index.md +++ b/guide/english/java/arrays/index.md @@ -161,7 +161,7 @@ for(int i = 0; i < M; i++) { } } ``` -This loop will execute M ^ N times and will build this: +This loop will execute M * N times and will build this: ```java [ 0 | 1 | 2 | 3 | 4 ] [ 0 | 1 | 2 | 3 | 4 ]