-
Notifications
You must be signed in to change notification settings - Fork 539
[TOOL-4591] Fix resolveImplementation jsdoc code example in jsdoc #7141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[TOOL-4591] Fix resolveImplementation jsdoc code example in jsdoc #7141
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
|
WalkthroughThe only modification in this change is an update to the JSDoc example import path for the Changes
Assessment against linked issues
Warning Review ran into problems🔥 ProblemsErrors were encountered while retrieving linked issues. Errors (1)
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
✅ Files skipped from review due to trivial changes (1)
⏰ Context from checks skipped due to timeout of 90000ms (4)
✨ Finishing Touches
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
packages/thirdweb/src/utils/bytecode/resolveImplementation.ts (1)
21-21
: Update JSDoc example import path
The import path in the JSDoc example has been corrected to"thirdweb/utils"
, matching the actual location ofresolveImplementation
.
Please verify that any other documentation or code samples (e.g., README, tutorials) are updated to use this new path as well.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
packages/thirdweb/src/utils/bytecode/resolveImplementation.ts
(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (8)
- GitHub Check: Unit Tests
- GitHub Check: E2E Tests (pnpm, esbuild)
- GitHub Check: E2E Tests (pnpm, webpack)
- GitHub Check: Build Packages
- GitHub Check: Lint Packages
- GitHub Check: E2E Tests (pnpm, vite)
- GitHub Check: Size
- GitHub Check: Analyze (javascript)
size-limit report 📦
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #7141 +/- ##
==========================================
- Coverage 55.63% 55.62% -0.01%
==========================================
Files 902 902
Lines 58190 58190
Branches 4098 4098
==========================================
- Hits 32373 32369 -4
- Misses 25712 25716 +4
Partials 105 105
🚀 New features to boost your workflow:
|
Merge activity
|
) <!-- ## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes" If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000): ## Notes for the reviewer Anything important to call out? Be sure to also clarify these in your comments. ## How to test Unit tests, playground, etc. --> <!-- start pr-codex --> --- ## PR-Codex overview This PR updates the import path for the `resolveImplementation` function to reflect its new location within the `thirdweb/utils` directory. ### Detailed summary - Changed import statement for `resolveImplementation` from `thirdweb` to `thirdweb/utils`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex --> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Documentation** - Updated example import path in documentation for improved clarity. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
cc92e15
to
916ecf4
Compare
PR-Codex overview
This PR updates the import path for the
resolveImplementation
function in theresolveImplementation.ts
file to reflect its new location within thethirdweb/utils
directory.Detailed summary
resolveImplementation
from:import { resolveImplementation } from "thirdweb";
import { resolveImplementation } from "thirdweb/utils";
Summary by CodeRabbit