From 1f730869a8dfff0880e7620d6955c2dccdef108c Mon Sep 17 00:00:00 2001 From: Ryan Brink Date: Sat, 7 Jan 2023 17:16:05 -0500 Subject: [PATCH] chore: fix incorrect line in documentation --- docs/concepts/enrichment.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/concepts/enrichment.md b/docs/concepts/enrichment.md index c4a2ef603..932b40f79 100644 --- a/docs/concepts/enrichment.md +++ b/docs/concepts/enrichment.md @@ -1,6 +1,5 @@ Kompendium allows users to enrich their data types with additional information. This can be done by defining a -`TypeEnrichment` object and passing it to the `enrich` function on the `NotarizedRoute` builder. Enrichments -can be added to any request or response. +`TypeEnrichment` object and passing it to the `enrichment` parameter of the relevant `requestType` or `responseType`. ```kotlin data class SimpleData(val a: String, val b: Int? = null)