From 3395e137faeab1a5f50b9b94162166c28379a251 Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Wed, 16 Nov 2005 10:22:58 -0500 Subject: [PATCH] STYLE: fix docs --- Source/cmCMakeMinimumRequired.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Source/cmCMakeMinimumRequired.h b/Source/cmCMakeMinimumRequired.h index 05f2f1a40..e3e6da9f7 100644 --- a/Source/cmCMakeMinimumRequired.h +++ b/Source/cmCMakeMinimumRequired.h @@ -65,8 +65,11 @@ public: virtual const char* GetFullDocumentation() { return - "CMAKE_MINIMUM_REQUIRED(VERSION versionNumber)\n" - "Let cmake know that the project requires a certain version of a cmake, or newer. CMake will also try to backwards compatible to the version of cmake specified, if a newer version of cmake is running."; + " CMAKE_MINIMUM_REQUIRED(VERSION versionNumber)\n" + "Let cmake know that the project requires a certain version of a " + "cmake, or newer. CMake will also try to be backwards compatible to " + "the version of cmake specified, if a newer version of cmake is " + "running."; } cmTypeMacro(cmCMakeMinimumRequired, cmCommand);