aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Partin <tristan@partin.io>2022-12-15 12:54:56 -0600
committerTristan Partin <tristan@partin.io>2022-12-15 20:24:26 -0600
commitfb6fda385391ac5d030b4e642fc426ada5d80488 (patch)
treedce8182b0e06d0e1c64d96f16922475ce5818bbb
parent7254db36a7adfa3f5e3e6cbce5dc1e3037893eb9 (diff)
downloadmeson-fb6fda385391ac5d030b4e642fc426ada5d80488.zip
meson-fb6fda385391ac5d030b4e642fc426ada5d80488.tar.gz
meson-fb6fda385391ac5d030b4e642fc426ada5d80488.tar.bz2
Change double quote doc comment to sinqle quote
-rw-r--r--mesonbuild/dependencies/dev.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/dependencies/dev.py b/mesonbuild/dependencies/dev.py
index 732ac8c..cc02842 100644
--- a/mesonbuild/dependencies/dev.py
+++ b/mesonbuild/dependencies/dev.py
@@ -612,12 +612,12 @@ class JNISystemDependency(SystemDependency):
@staticmethod
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
platform-dependent directory that must be on the target's include path in addition to the
parent `include/` directory.
- """
+ '''
if m.is_linux():
return 'linux'
elif m.is_windows():