Skip to content

Commit 849c360

Browse files
authored
🔀 Merge pull request #365 from ruby/fix-rdoc-issues
📚 Fix rdoc issues
2 parents 13feeaf + a8eba5e commit 849c360

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

docs/styles.css

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66

77
main .method-detail {
88
display: grid;
9-
grid-template-areas: "header controls"
10-
"description description";
11-
grid-template-columns: 1fr min-content;
9+
grid-template-columns: 1fr auto;
1210
justify-content: space-between;
1311
}
1412

@@ -20,19 +18,16 @@ main .method-header, main .method-controls {
2018
}
2119

2220
main .method-header {
23-
grid-area: "header";
2421
border-right: none;
2522
border-radius: 4px 0 0 4px;
2623
}
2724

2825
main .method-controls {
29-
grid-area: "controls";
3026
border-left: none;
3127
border-radius: 0 4px 4px 0;
3228
}
3329

3430
main .method-description, main .aliases {
35-
grid-area: "description";
3631
grid-column: 1 / span 2;
3732
padding-left: 1em;
3833
}

lib/net/imap.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1942,7 +1942,7 @@ def uid_expunge(uid_set)
19421942
# and returns either a SearchResult or an ESearchResult. SearchResult
19431943
# inherits from Array (for backward compatibility) but adds
19441944
# SearchResult#modseq when the +CONDSTORE+ capability has been enabled.
1945-
# ESearchResult also implements to_a{rdoc-ref:ESearchResult#to_a}, for
1945+
# ESearchResult also implements {#to_a}[rdoc-ref:ESearchResult#to_a], for
19461946
# compatibility with SearchResult.
19471947
#
19481948
# +criteria+ is one or more search keys and their arguments, which may be

0 commit comments

Comments
 (0)