[NFC] Trim trailing whitespace in *.rst
[platform/upstream/llvm.git] / clang-tools-extra / docs / clang-tidy / checks / bugprone-bad-signal-to-kill-thread.rst
index 05f5c93..8bf5ab1 100644 (file)
@@ -3,8 +3,8 @@
 bugprone-bad-signal-to-kill-thread
 ==================================
 
-Finds ``pthread_kill`` function calls when a thread is terminated by 
-raising ``SIGTERM`` signal and the signal kills the entire process, not 
+Finds ``pthread_kill`` function calls when a thread is terminated by
+raising ``SIGTERM`` signal and the signal kills the entire process, not
 just the individual thread. Use any signal except ``SIGTERM``.
 
 .. code-block: c++