The path to self manpage files

Property definitions

nitc :: nitpackage $ MPackage :: man_path
	# The path to `self` manpage files
	private fun man_path: nullable String do
		var path = package_path
		if path == null then return null
		if not is_expanded then return null
		return path / "man"
	end
src/nitpackage.nit:383,2--389,4