Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Fix typo in style-guide.md #166

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CoreLibraries/style-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ We suggest:

### Type Conversions

Since Q# is a strongly and staticly typed language, a value of one type can only be used as a value of another type by using an explicit call to a type conversion function.
Since Q# is a strongly and statically typed language, a value of one type can only be used as a value of another type by using an explicit call to a type conversion function.
This is in contrast to languages which allow for values to change types implicitly (e.g.: type promotion), or through casting.
As a result, type conversion functions play an important role in Q# library development, and comprise one of the more commonly encountered decisions about naming.
We note, however, that since type conversions are always _deterministic_, they can be written as functions and thus fall under the advice above.
Expand Down