Skip to content

Commit 8069b23

Browse files
committed
Fixup position of punctuation inside quotes
This looks nicer for text in code font.
1 parent c484d79 commit 8069b23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/utilities.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18535,14 +18535,14 @@
1853518535

1853618536
static_assert( is_pointer_interconvertible_with_class( &C::b ) );
1853718537
// Succeeds because, despite its appearance, \tcode{\&C::b} has type
18538-
// "pointer to member of \tcode{B} of type \tcode{int}."
18538+
// "pointer to member of \tcode{B} of type \tcode{int}".
1853918539
static_assert( is_pointer_interconvertible_with_class<C>( &C::b ) );
1854018540
// Forces the use of class \tcode{C}, and fails.
1854118541

1854218542
static_assert( is_corresponding_member( &C::a, &C::b ) );
1854318543
// Succeeds because, despite its appearance, \tcode{\&C::a} and \tcode{\&C::b} have types
1854418544
// "pointer to member of \tcode{A} of type \tcode{int}" and
18545-
// "pointer to member of \tcode{B} of type \tcode{int}," respectively.
18545+
// "pointer to member of \tcode{B} of type \tcode{int}", respectively.
1854618546
static_assert( is_corresponding_member<C, C>( &C::a, &C::b ) );
1854718547
// Forces the use of class \tcode{C}, and fails.
1854818548
\end{codeblock}

0 commit comments

Comments
 (0)