From 13cb52c6ca740e44a881747aa121e6bee929b007 Mon Sep 17 00:00:00 2001 From: Jacob Bramley Date: Thu, 3 Oct 2019 11:11:22 +0100 Subject: [PATCH] Fix a simple typing error. Change-Id: Iace4a9bc13be28331f4992024d7b027304c7560d --- .clang-tidy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.clang-tidy b/.clang-tidy index b3db0d43..57feba42 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -5,8 +5,8 @@ # This warns against the use of mrand48 (etc) and suggests replacing them # with arc4random. However, we are using these to drive tests and debug # tools, and we need the ability to manually seed the generator. This is -# not possible with arc4random, and do not particularly robust random -# numbers, so we continue to use mrand48. +# not possible with arc4random, and we do not need particularly robust +# random numbers, so we continue to use mrand48. # -google-readability-todo: # We don't put names on TODOs. # -google-readability-function-size: