From c4e8a6207bbcd3ca7def286def250cc18e5408b4 Mon Sep 17 00:00:00 2001 From: Dachary Date: Tue, 9 Jan 2024 09:03:57 -0500 Subject: [PATCH] Apply review feedback Co-authored-by: cbullinger <115956901+cbullinger@users.noreply.github.com> --- source/sdk/cpp/sync/manage-sync-session.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/sdk/cpp/sync/manage-sync-session.txt b/source/sdk/cpp/sync/manage-sync-session.txt index 19c1f850d8..f96de0c695 100644 --- a/source/sdk/cpp/sync/manage-sync-session.txt +++ b/source/sdk/cpp/sync/manage-sync-session.txt @@ -63,7 +63,7 @@ Check the Network Connection indication of connection state. To check the connection state, you can read the -:cpp-sdk:`Sync session instance's ` +:cpp-sdk:`sync session instance's ` ``connection_state()`` property directly. .. literalinclude:: /examples/generated/cpp/sync-session.snippet.connection-state.cpp @@ -87,7 +87,7 @@ method to unregister an observation token. The network connection state is distinct from the Device Sync connection state that you can check with the ``state()`` method. For more information about -Sync connection state, refer to the Check the Sync State documentation on +sync connection state, refer to the Check the Sync State documentation on this page. .. _cpp-pause-resume-sync-session: @@ -100,7 +100,7 @@ Pausing a sync session only suspends that realm's sync session. If you have more than one open realm, suspend does not affect the sync sessions for other realms. -To pause a sync session, call the Sync session's +To pause a sync session, call the sync session's :cpp-sdk:`pause() ` method. @@ -151,7 +151,7 @@ This returns an enum whose value reflects possible Device Sync states. .. literalinclude:: /examples/generated/cpp/sync-session.snippet.sync-state.cpp :language: cpp -The Sync connection state is distinct from the network connection state +The sync connection state is distinct from the network connection state that you can check with the ``connection_state()`` method. For more information about network connection state, refer to the Check the Network Connection documentation on this page.