From 937131bbffda9b0b1cee5a63f54a05a352d68b4f Mon Sep 17 00:00:00 2001 From: Simon Vergauwen Date: Thu, 17 May 2018 19:17:58 +0200 Subject: [PATCH] Fix docs --- modules/docs/arrow-docs/docs/docs/optics/dsl/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/docs/arrow-docs/docs/docs/optics/dsl/README.md b/modules/docs/arrow-docs/docs/docs/optics/dsl/README.md index 35d042e9644..532d9a296a9 100644 --- a/modules/docs/arrow-docs/docs/docs/optics/dsl/README.md +++ b/modules/docs/arrow-docs/docs/docs/optics/dsl/README.md @@ -21,8 +21,9 @@ package com.example.domain The DSL will be generated in the same package as your `data class` and can be used on the `Companion` of your class. ```kotlin:ank -import com.example.domain.* +import arrow.optics.* import arrow.optics.dsl.* +import com.example.domain.* val john = Employee("John Doe", Company("Kategory", Address("Functional city", Street(42, "lambda street"))))