---
title: Enforce spacing after the fun keyword
description: Datadog, the leading service for cloud-scale monitoring.
breadcrumbs: >-
  Docs > Datadog Security > Code Security > Static Code Analysis (SAST) > SAST
  Rules > Enforce spacing after the fun keyword
---

# Enforce spacing after the fun keyword

{% callout %}
# Important note for users on the following Datadog sites: app.ddog-gov.com

{% alert level="danger" %}
This product is not supported for your selected [Datadog site](https://docs.datadoghq.com/getting_started/site.md). ().
{% /alert %}

{% /callout %}

## Metadata{% #metadata %}

**ID:** `kotlin-code-style/function-keyword-spacing`

**Language:** Kotlin

**Severity:** Notice

**Category:** Code Style

## Description{% #description %}

There should be one space between the `fun` keyword and the name of the function it defines.

## Non-Compliant Code Examples{% #non-compliant-code-examples %}

```kotlin
fun  foo() = "some-result"
fun
foo() = "some-result"

fun  MutableList<Int>.swap(index1: Int, index2: Int) {
    val tmp = this[index1] // 'this' corresponds to the list
    this[index1] = this[index2]
    this[index2] = tmp
}
```

## Compliant Code Examples{% #compliant-code-examples %}

```kotlin
fun foo() = "some-result"

fun MutableList<Int>.swap(index1: Int, index2: Int) {
    val tmp = this[index1] // 'this' corresponds to the list
    this[index1] = this[index2]
    this[index2] = tmp
}

fun <T> foo(arg: T) {}

fun Collection<*>?.sizeOrZero(): Int {
  
}
```
  Seamless integrations. Try Datadog Code SecurityDatadog Code Security 
{% icon name="icon-external-link" /%}
 