fix: typescript indentation inconsistent or missing #1632
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Overview
Fixed indentation in JavaScript/TypeScript code example in the LangSmith observability quickstart guide (link). The code inside function bodies was missing proper indentation, which could confuse readers and doesn't follow standard formatting conventions.
Type of change
Type: Fix typo/bug/link/formatting
Before:

After:

Related issues/PRs
GitHub issue: N/A
Feature PR: N/A
Checklist
docs devAdditional notes
This change improves code readability by adding proper 4-space indentation to the function bodies in the RAG example. The change is purely cosmetic and does not affect the functionality of the code. The indentation now follows standard JavaScript/TypeScript formatting conventions, making it easier for readers to understand the code structure.
Files changed:
src/langsmith/observability-quickstart.mdx- Fixed indentation in traceable RAG example (lines 311-338)Note: This PR was created with assistance from an AI coding assistant.