Skip to content

Commit

Permalink
modify comment
Browse files Browse the repository at this point in the history
  • Loading branch information
tcm390 committed Jan 10, 2025
1 parent 273eef0 commit cf8f93d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/plugin-twitter/src/actions/post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async function composeTweet(

let trimmedContent = tweetContentObject.object.text.trim();

// Truncate the content to the maximum tweet length specified in the environment settings, ensuring the truncation respects sentence boundaries.
// Truncate the content to the maximum tweet length specified in the environment settings.
const maxTweetLength = this.client.twitterConfig.MAX_TWEET_LENGTH;
if (maxTweetLength) {
trimmedContent = truncateToCompleteSentence(
Expand Down

0 comments on commit cf8f93d

Please sign in to comment.