Change double quote doc comment to sinqle quote

pull/11181/head
Tristan Partin 2 years ago
parent 7254db36a7
commit fb6fda3853
No known key found for this signature in database
GPG Key ID: 5AD0476101F9899D
  1. 4
      mesonbuild/dependencies/dev.py

@ -612,12 +612,12 @@ class JNISystemDependency(SystemDependency):
@staticmethod @staticmethod
def __machine_info_to_platform_include_dir(m: 'MachineInfo') -> T.Optional[str]: def __machine_info_to_platform_include_dir(m: 'MachineInfo') -> T.Optional[str]:
"""Translates the machine information to the platform-dependent include directory '''Translates the machine information to the platform-dependent include directory
When inspecting a JDK release tarball or $JAVA_HOME, inside the `include/` directory is a When inspecting a JDK release tarball or $JAVA_HOME, inside the `include/` directory is a
platform-dependent directory that must be on the target's include path in addition to the platform-dependent directory that must be on the target's include path in addition to the
parent `include/` directory. parent `include/` directory.
""" '''
if m.is_linux(): if m.is_linux():
return 'linux' return 'linux'
elif m.is_windows(): elif m.is_windows():

Loading…
Cancel
Save