Update Standard/src/Arrays/Filter.qs

Co-Authored-By: Chris Granade <cgranade@gmail.com>
This commit is contained in:
Kitty Yeung 2020-02-19 13:12:51 -08:00 коммит произвёл GitHub
Родитель 5639fbfe52
Коммит 4b39afc81e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -45,7 +45,7 @@ namespace Microsoft.Quantum.Arrays {
/// open Microsoft.Quantum.Arrays;
/// open Microsoft.Quantum.Logical;
///
/// operation Filtered_Demo () : Unit {
/// function FilteredDemo () : Unit {
/// let predicate = GreaterThanI(_, 5);
/// let filteredArray = Filtered (predicate,[2,5,9,1,8]);
/// Message($"{filteredArray}");