From 5e50ea10c9e37fca3a6feb3f3da851afb9ac72cc Mon Sep 17 00:00:00 2001 From: Nathan Stocks Date: Sat, 8 Jan 2022 18:45:40 -0700 Subject: [PATCH] permutations -> combinations --- content/news/2022-01-08-bevy-0.6/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/news/2022-01-08-bevy-0.6/index.md b/content/news/2022-01-08-bevy-0.6/index.md index 59a5c5d416..c710605014 100644 --- a/content/news/2022-01-08-bevy-0.6/index.md +++ b/content/news/2022-01-08-bevy-0.6/index.md @@ -690,7 +690,7 @@ We plan on exposing more control over scheduling, running, and working with sub-
authors: @Frizi
-You can now iterate all permutations of N entities for a given query: +You can now iterate all combinations of N entities for a given query: ```rust fn system(query: Query<&Player>) {