diff --git a/CMakeLists.txt b/CMakeLists.txt index 56061c6c3..e2c251e9f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -678,7 +678,7 @@ if(ENABLE_DAEMON OR ENABLE_GTK OR ENABLE_QT) endif() if(INSTALL_DOC) - install(FILES AUTHORS COPYING NEWS.md README.md extras/rpc-spec.md extras/send-email-when-torrent-done.sh DESTINATION ${CMAKE_INSTALL_DOCDIR}) + install(FILES AUTHORS COPYING NEWS.md README.md docs/rpc-spec.md extras/send-email-when-torrent-done.sh DESTINATION ${CMAKE_INSTALL_DOCDIR}) endif() if(MSVC AND ENABLE_DAEMON AND ENABLE_QT AND ENABLE_UTILS AND WITH_CRYPTO STREQUAL "openssl") diff --git a/libtransmission/transmission.h b/libtransmission/transmission.h index 7b8f6b75c..dc6b7a71b 100644 --- a/libtransmission/transmission.h +++ b/libtransmission/transmission.h @@ -314,7 +314,7 @@ bool tr_sessionIsIncompleteFileNamingEnabled(tr_session const* session); * @brief Set whether or not RPC calls are allowed in this session. * * @details If true, libtransmission will open a server socket to listen - * for incoming http RPC requests as described in extras/rpc-spec.md. + * for incoming http RPC requests as described in docs/rpc-spec.md. * * This is intially set by tr_sessionInit() and can be * queried by tr_sessionIsRPCEnabled().