From 8f4d9b0b249f4db28bdcc7ebd85656457d1871a9 Mon Sep 17 00:00:00 2001 From: partev Date: Mon, 23 Aug 2021 20:41:31 -0400 Subject: [PATCH] DOC: OSX -> macOS --- doc/source/development/contributing_codebase.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/development/contributing_codebase.rst b/doc/source/development/contributing_codebase.rst index 53e66eeff51e6..6fe0fa82236c3 100644 --- a/doc/source/development/contributing_codebase.rst +++ b/doc/source/development/contributing_codebase.rst @@ -181,7 +181,7 @@ run this command, though it may take longer:: git diff upstream/master --name-only -- "*.py" | xargs -r flake8 -Note that on OSX, the ``-r`` flag is not available, so you have to omit it and +Note that on macOS, the ``-r`` flag is not available, so you have to omit it and run this slightly modified command:: git diff upstream/master --name-only -- "*.py" | xargs flake8 @@ -244,7 +244,7 @@ Alternatively, you can run a command similar to what was suggested for ``black`` git diff upstream/master --name-only -- "*.py" | xargs -r isort -Where similar caveats apply if you are on OSX or Windows. +Where similar caveats apply if you are on macOS or Windows. You can then verify the changes look ok, then git :any:`commit ` and :any:`push `.