Skip to content
This repository was archived by the owner on Nov 13, 2024. It is now read-only.

Commit 472f6a3

Browse files
committed
fixes from review
1 parent d9655a5 commit 472f6a3

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

api/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
uid: microsoft.quantum.standardlibsintro
2+
uid: microsoft.quantum.apiref-intro
33
title: Q# libraries for Microsoft Quantum
44
description: Reference documentation for the Q# libraries for Microsoft Quantum
55
author: bradben

articles/overview/what-is-qsharp-and-qdk.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ no-loc: ['Q#', '$$v']
1111

1212
# What are the Q# programming language and QDK?
1313

14-
Q# is Microsoft’s open-source programming language for developing and running quantum algorithms. It’s part of the Quantum Development Kit (QDK), which includes [Q# libraries](xref:microsoft.quantum.libraries), [quantum simulators](xref:microsoft.quantum.machines), [extensions for other programming environments](xref:microsoft.quantum.install), and [API documentation](xref:microsoft.quantum.standardlibsintro). In addition to the Standard Q# library, the QDK includes Chemistry, Machine Learning, and Numeric libraries.
14+
Q# is Microsoft’s open-source programming language for developing and running quantum algorithms. It’s part of the Quantum Development Kit (QDK), which includes [Q# libraries](xref:microsoft.quantum.libraries), [quantum simulators](xref:microsoft.quantum.machines), [extensions for other programming environments](xref:microsoft.quantum.install), and [API documentation](xref:microsoft.quantum.apiref-intro). In addition to the Standard Q# library, the QDK includes Chemistry, Machine Learning, and Numeric libraries.
1515

1616
As a programming language, Q# draws familiar elements from Python, C#, and F# and supports a basic procedural model for writing programs with loops, if/then statements, and common data types. It also introduces new quantum-specific data structures and operations.
1717

@@ -47,7 +47,7 @@ When you compile and run the program, it creates an instance of the quantum simu
4747

4848
Isolating the Q# code in the simulator ensures that the algorithms follow the laws of quantum physics and can run correctly on quantum computers.
4949

50-
![Qsharp code flow(~/media/qsharp-code-flow.png)
50+
![Qsharp code flow](~/media/qsharp-code-flow.png)
5151

5252
## How do I use the QDK?
5353

articles/quickstarts/get-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The current documentation includes the following additional topics.
6060
Topics include control flow, data structures, error correction, testing, and debugging.
6161
* [Q# chemistry library](xref:microsoft.quantum.chemistry.concepts.intro) describes the operations and functions that support quantum chemistry simulation---a critical application of quantum computing. Topics include simulating Hamiltonian dynamics and quantum phase estimation, among others.
6262
* [Q# numerics library](xref:microsoft.quantum.numerics.intro) describes the operations and functions that support expressing complicated arithmetic functions in terms of the native operations of target machines.
63-
* [Q# library reference](xref:microsoft.quantum.standardlibsintro) contains reference information about library entities by namespace.
63+
* [Q# library reference](xref:microsoft.quantum.apiref-intro) contains reference information about library entities by namespace.
6464

6565
### General quantum computing
6666

articles/resources/relnotes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ See the full list of closed PRs for [libraries](https://github.com/Microsoft/Qua
125125

126126
This release contains the following:
127127

128-
- New Quantum Machine Learning library, for more information go to our [QML docs page](https://docs.microsoft.com/quantum/libraries/machine-learning/)
128+
- New Quantum Machine Learning library, for more information go to our [QML docs page](xref:microsoft.quantum.machine-learning.concepts.intro)
129129
- IQ# bug fixes, resulting in up to a 10-20x performance increase when loading NuGet packages
130130

131131
See the full list of closed PRs for [libraries](https://github.com/Microsoft/QuantumLibraries/pulls?q=is%3Apr+is%3Aclosed), [compiler](https://github.com/microsoft/qsharp-compiler/pulls?q=is%3Apr+is%3Aclosed), [runtime](https://github.com/microsoft/qsharp-runtime/pulls?q=is%3Apr+is%3Aclosed), [samples](https://github.com/Microsoft/Quantum/pulls?q=is%3Apr+is%3Aclosed) and [Katas](https://github.com/microsoft/QuantumKatas/pulls?q=is%3Apr+is%3Aclosed).

articles/user-guide/libraries/standard/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ Q# is supported by a range of different useful operations, functions, and user-d
1515
The [`Microsoft.Quantum.Development.Kit` NuGet package](https://www.nuget.org/packages/microsoft.quantum.development.kit) installed during [installation and validation](xref:microsoft.quantum.install) provides the Q# compiler, and parts of the standard library that are implemented by the target machines.
1616
The [`Microsoft.Quantum.Standard` package](https://www.nuget.org/packages/microsoft.quantum.standard) provides the portion of the Q# standard libraries that are portable across target machines.
1717

18-
The symbols defined by the Q# standard libraries are defined in much greater and more exhaustive detail in the [API documentation](xref:microsoft.quantum.standardlibsintro).
18+
The symbols defined by the Q# standard libraries are defined in much greater and more exhaustive detail in the [API documentation](xref:microsoft.quantum.apiref-intro).
1919

2020
In the following sections, we will outline the most salient features of each part of the standard library and provide some context about how each feature might be used in practice.

0 commit comments

Comments
 (0)