From 2132f1e542080360f9dd322bd709dd8d197433a9 Mon Sep 17 00:00:00 2001 From: Peter Chittum <1127876+pchittum@users.noreply.github.com> Date: Fri, 19 Jan 2024 16:39:56 +0000 Subject: [PATCH] fixed comment and regen apexdoc static resources (#503) --- force-app/main/default/classes/Data Recipes/SOQLRecipes.cls | 2 +- .../main/default/staticresources/documentation/SOQLRecipes.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/force-app/main/default/classes/Data Recipes/SOQLRecipes.cls b/force-app/main/default/classes/Data Recipes/SOQLRecipes.cls index 5d0317c2..b3a62e8f 100755 --- a/force-app/main/default/classes/Data Recipes/SOQLRecipes.cls +++ b/force-app/main/default/classes/Data Recipes/SOQLRecipes.cls @@ -166,7 +166,7 @@ public with sharing class SOQLRecipes { * * @return List * @example - * System.debug('SOQLRecipes.getSecond10AccountRecords()'); + * System.debug(SOQLRecipes.getSecond10AccountRecords()); **/ public static List getSecond10AccountRecords() { return [ diff --git a/force-app/main/default/staticresources/documentation/SOQLRecipes.md b/force-app/main/default/staticresources/documentation/SOQLRecipes.md index d405cb92..87475b73 100644 --- a/force-app/main/default/staticresources/documentation/SOQLRecipes.md +++ b/force-app/main/default/staticresources/documentation/SOQLRecipes.md @@ -154,7 +154,7 @@ Demonstrates how to get a limited number of results with a given offset; Ie: get #### Example ```apex -System.debug('SOQLRecipes.getSecond10AccountRecords()'); +System.debug(SOQLRecipes.getSecond10AccountRecords()); ```