From a145f0046d0b75d421915fae0b0ab5f99ce34616 Mon Sep 17 00:00:00 2001 From: Marouane <6729798+MarouaneMan@users.noreply.github.com> Date: Mon, 11 Apr 2022 18:14:38 +0200 Subject: [PATCH] docs: fix code indentation (#8864) bad indentation break syntax highlighting. --- docs/select-query-builder.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/select-query-builder.md b/docs/select-query-builder.md index 37eb6d090e..c97614f670 100644 --- a/docs/select-query-builder.md +++ b/docs/select-query-builder.md @@ -178,13 +178,13 @@ There are 5 different `QueryBuilder` types available: - `RelationQueryBuilder` - used to build and execute relation-specific operations [TBD]. Example: - ```typescript - await dataSource - .createQueryBuilder() - .relation(User,"photos") - .of(id) - .loadMany(); - ``` + ```typescript + await dataSource + .createQueryBuilder() + .relation(User,"photos") + .of(id) + .loadMany(); + ``` You can switch between different types of query builder within any of them, once you do, you will get a new instance of query builder (unlike all other methods).