Skip to content

Commit

Permalink
🔀 Merge pull request #365 from ruby/fix-rdoc-issues
Browse files Browse the repository at this point in the history
📚 Fix rdoc issues
  • Loading branch information
nevans authored Dec 16, 2024
2 parents 13feeaf + a8eba5e commit 849c360
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions docs/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@

main .method-detail {
display: grid;
grid-template-areas: "header controls"
"description description";
grid-template-columns: 1fr min-content;
grid-template-columns: 1fr auto;
justify-content: space-between;
}

Expand All @@ -20,19 +18,16 @@ main .method-header, main .method-controls {
}

main .method-header {
grid-area: "header";
border-right: none;
border-radius: 4px 0 0 4px;
}

main .method-controls {
grid-area: "controls";
border-left: none;
border-radius: 0 4px 4px 0;
}

main .method-description, main .aliases {
grid-area: "description";
grid-column: 1 / span 2;
padding-left: 1em;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/net/imap.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1942,7 +1942,7 @@ def uid_expunge(uid_set)
# and returns either a SearchResult or an ESearchResult. SearchResult
# inherits from Array (for backward compatibility) but adds
# SearchResult#modseq when the +CONDSTORE+ capability has been enabled.
# ESearchResult also implements to_a{rdoc-ref:ESearchResult#to_a}, for
# ESearchResult also implements {#to_a}[rdoc-ref:ESearchResult#to_a], for
# compatibility with SearchResult.
#
# +criteria+ is one or more search keys and their arguments, which may be
Expand Down

0 comments on commit 849c360

Please sign in to comment.