Skip to content

Commit

Permalink
docs: OS X -> macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasWaldmann committed Jul 4, 2023
1 parent be73133 commit 8db8fd6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ Checklist:
* pypi dist package and signature
* Standalone binaries (see above for how to create them).

+ For OS X, document the OS X Fuse version in the README of the binaries.
OS X FUSE uses a kernel extension that needs to be compatible with the
+ For macOS, document the macFUSE version in the README of the binaries.
macFUSE uses a kernel extension that needs to be compatible with the
code contained in the binary.
* A link to ``CHANGES.rst``.
2 changes: 1 addition & 1 deletion docs/usage/general/file-metadata.rst.inc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ On some platforms additional features are supported:
+=========================+==========+===========+============+
| Linux | Yes | Yes | Yes [1]_ |
+-------------------------+----------+-----------+------------+
| Mac OS X | Yes | Yes | Yes (all) |
| macOS | Yes | Yes | Yes (all) |
+-------------------------+----------+-----------+------------+
| FreeBSD | Yes | Yes | Yes (all) |
+-------------------------+----------+-----------+------------+
Expand Down
2 changes: 1 addition & 1 deletion src/borg/testsuite/platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def test_utils(self):
self.assert_equal(acl_use_local_uid_gid(b"group:root:rw-:0"), b"group:0:rw-")


@unittest.skipUnless(sys.platform.startswith("darwin"), "OS X only test")
@unittest.skipUnless(sys.platform.startswith("darwin"), "macOS only test")
@unittest.skipIf(fakeroot_detected(), "not compatible with fakeroot")
class PlatformDarwinTestCase(BaseTestCase):
def setUp(self):
Expand Down
2 changes: 1 addition & 1 deletion src/borg/xattr.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""A basic extended attributes (xattr) implementation for Linux, FreeBSD and MacOS X."""
"""A basic extended attributes (xattr) implementation for Linux, FreeBSD and macOS."""

import errno
import os
Expand Down

0 comments on commit 8db8fd6

Please sign in to comment.