Skip to content

Commit 8f81b21

Browse files
authored
Formatting fix for the generics manifesto
1 parent b0fed59 commit 8f81b21

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/GenericsManifesto.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,8 @@ extension Collection {
110110

111111
`let` constants could be allowed to have generic parameters, such that they produce differently-typed values depending on how they are used. For example, this is particularly useful for named literal values, e.g.,
112112

113-
```Swift let π<T : ExpressibleByFloatLiteral>: T = 3.141592653589793238462643383279502884197169399```
113+
```Swift
114+
let π<T : ExpressibleByFloatLiteral>: T = 3.141592653589793238462643383279502884197169399```
114115

115116
The Clang importer could make particularly good use of this when importing macros.
116117

0 commit comments

Comments
 (0)