From c43df559653fc2a0c21a98f05063f56b02cbce13 Mon Sep 17 00:00:00 2001 From: SatoShun Date: Fri, 2 Aug 2019 00:08:59 +0000 Subject: [PATCH] Type parameters are placed before the name of the function --- spec-docs/reified-type-parameters.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spec-docs/reified-type-parameters.md b/spec-docs/reified-type-parameters.md index ab299767b2a..41942d5c5a7 100644 --- a/spec-docs/reified-type-parameters.md +++ b/spec-docs/reified-type-parameters.md @@ -7,8 +7,7 @@ Goal: support run-time access to types passed to functions, as if they were reif A type parameter of a function can be marked as `reified`: ``` kotlin - -inline fun foo() {} +inline fun foo() {} ``` ## Semantics, Checks and Restrictions