Skip to content

Commit a158186

Browse files
authored
Fix JSDoc indentation in getAllInstances example (#90)
1 parent bb242dc commit a158186

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/durabletask-js/src/client/client.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -609,15 +609,15 @@ export class TaskHubGrpcClient {
609609
* @example
610610
* ```typescript
611611
* // Iterate over all matching instances
612-
* const logger = new ConsoleLogger();
612+
* const logger = new ConsoleLogger();
613613
* const pageable = client.getAllInstances({ statuses: [OrchestrationStatus.COMPLETED] });
614614
* for await (const instance of pageable) {
615-
* logger.info(instance.instanceId);
615+
* logger.info(instance.instanceId);
616616
* }
617617
*
618618
* // Iterate over pages
619619
* for await (const page of pageable.asPages()) {
620-
* logger.info(`Page has ${page.values.length} items`);
620+
* logger.info(`Page has ${page.values.length} items`);
621621
* }
622622
* ```
623623
*

0 commit comments

Comments
 (0)