]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
README.md: fix couple minor syntax issues 41965/head
authorSrishti Guleria <61888364+sg7801@users.noreply.github.com>
Tue, 22 Jun 2021 05:48:09 +0000 (11:18 +0530)
committerKefu Chai <kchai@redhat.com>
Thu, 8 Jul 2021 15:27:33 +0000 (23:27 +0800)
Signed-off-by: Srishti Guleria <guleriasrishti01@gmail.com>
README.md

index c81d5d07ea90254b221d1500d9793133c4d480d5..e996e1935000b3918f6a0844ede1718477c892fe 100644 (file)
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@ Please see http://ceph.com/ for current info.
 ## Contributing Code
 
 Most of Ceph is dual licensed under the LGPL version 2.1 or 3.0.  Some
-miscellaneous code is under BSD-style license or is public domain.
+miscellaneous code is under BSD-style license or is public domain.
 The documentation is licensed under Creative Commons
 Attribution Share Alike 3.0 (CC-BY-SA-3.0).  There are a handful of headers
 included here that are licensed under the GPL.  Please see the file
@@ -47,7 +47,7 @@ The list of Debian or RPM packages dependencies can be installed with:
 
 Note that these instructions are meant for developers who are
 compiling the code for development and testing.  To build binaries
-suitable for installation we recommend you build deb or rpm packages,
+suitable for installation we recommend you build deb or rpm packages
 or refer to the `ceph.spec.in` or `debian/rules` to see which
 configuration options are specified for production builds.
 
@@ -69,7 +69,7 @@ if the build jobs are running out of memory. On average, each job takes around
 
 This assumes you make your build dir a subdirectory of the ceph.git
 checkout. If you put it elsewhere, just point `CEPH_GIT_DIR` to the correct
-path to the checkout. Any additional CMake args can be specified setting ARGS
+path to the checkout. Any additional CMake args can be specified by setting ARGS
 before invoking do_cmake. See [cmake options](#cmake-options)
 for more details. Eg.
 
@@ -86,10 +86,10 @@ To install:
 ### CMake Options
 
 If you run the `cmake` command by hand, there are many options you can
-set with "-D". For example the option to build the RADOS Gateway is
+set with "-D". For example, the option to build the RADOS Gateway is
 defaulted to ON. To build without the RADOS Gateway:
 
-       cmake -DWITH_RADOSGW=OFF [path to top level ceph directory]
+       cmake -DWITH_RADOSGW=OFF [path to top-level ceph directory]
 
 Another example below is building with debugging and alternate locations 
 for a couple of external dependencies:
@@ -106,7 +106,7 @@ If you often pipe `ninja` to `less` and would like to maintain the
 diagnostic colors for errors and warnings (and if your compiler
 supports it), you can invoke `cmake` with:
 
-       cmake -DDIAGNOSTICS_COLOR=always ..
+       cmake -DDIAGNOSTICS_COLOR=always ...
 
 Then you'll get the diagnostic colors when you execute:
 
@@ -186,7 +186,7 @@ To run an individual test manually and see all the tests output, run
 
        ctest -V -R [regex matching test name(s)]
 
-To run an tests manually and run the jobs in parallel, run `ctest` with 
+To run tests manually and run the jobs in parallel, run `ctest` with 
 the `-j` flag:
 
        ctest -j [number of jobs]