@@ -334,9 +334,8 @@ let ParentPackage = Nullability in {
334334
335335 def NullReturnedFromNonnullChecker
336336 : Checker<"NullReturnedFromNonnull">,
337- HelpText<
338- "Warns when a null pointer is returned from a function that has "
339- "_Nonnull return type.">,
337+ HelpText<"Warns when a null pointer is returned from a function that "
338+ "has _Nonnull return type.">,
340339 Documentation<HasDocumentation>;
341340
342341 def NullableDereferencedChecker
@@ -346,16 +345,14 @@ let ParentPackage = Nullability in {
346345
347346 def NullablePassedToNonnullChecker
348347 : Checker<"NullablePassedToNonnull">,
349- HelpText<
350- "Warns when a nullable pointer is passed to a pointer which has a "
351- "_Nonnull type.">,
348+ HelpText<"Warns when a nullable pointer is passed to a pointer which "
349+ "has a _Nonnull type.">,
352350 Documentation<HasDocumentation>;
353351
354352 def NullableReturnedFromNonnullChecker
355353 : Checker<"NullableReturnedFromNonnull">,
356354 HelpText<"Warns when a nullable pointer is returned from a function "
357- "that has "
358- "_Nonnull return type.">,
355+ "that has _Nonnull return type.">,
359356 Documentation<NotDocumented>;
360357
361358} // end "nullability"
0 commit comments