summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-10-16 12:26:17 -0700
committerTom Sepez <tsepez@chromium.org>2015-10-16 12:26:17 -0700
commit4a7b3f451604389cc8409466773a3ea702e1f3ae (patch)
treeb88fcc98c88b09d294570a14c01b916361bfba8b
parent8969a70de3ed74bf0e2ae133378f5e7a4d1fd4c0 (diff)
downloadpdfium-4a7b3f451604389cc8409466773a3ea702e1f3ae.tar.xz
Fix stray backslashes in README.md
TBR=dsinclair@chromium.org Review URL: https://codereview.chromium.org/1414463002 .
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 6fa8291228..b297e87c86 100644
--- a/README.md
+++ b/README.md
@@ -28,8 +28,8 @@ Previously, the second option (platform-specific build files) was the default.
Most PDFium developers use Ninja, as does our [continuous build system]
(http://build.chromium.org/p/client.pdfium/).
- * On Windows: `build\gyp\_pdfium`
- * For all other platforms: `build/gyp\_pdfium`
+ * On Windows: `build\gyp_pdfium`
+ * For all other platforms: `build/gyp_pdfium`
The second option is to generate platform-specific build files, i.e. Makefiles
on Linux, sln files on Windows, and xcodeproj files on Mac. To do so, set the
@@ -39,12 +39,12 @@ GYP\_GENERATORS environment variable appropriately (e.g. "make", "msvs", or
## Building the code
If you used Ninja, you can build the sample program by: `ninja -C out/Debug
-pdfium\_test` You can build the entire product (which includes a few unit
+pdfium_test` You can build the entire product (which includes a few unit
tests) by: `ninja -C out/Debug`.
If you're not using Ninja, then building is platform-specific.
- * On Linux: `make pdfium\_test`
+ * On Linux: `make pdfium_test`
* On Mac: `open build/all.xcodeproj`
* On Windows: open build\all.sln
@@ -52,7 +52,7 @@ If you're not using Ninja, then building is platform-specific.
The pdfium\_test program supports reading, parsing, and rasterizing the pages of
a .pdf file to .ppm or .png output image files (windows supports two other
-formats). For example: `out/Debug/pdfium\_test --ppm path/to/myfile.pdf`. Note
+formats). For example: `out/Debug/pdfium_test --ppm path/to/myfile.pdf`. Note
that this will write output images to `path/to/myfile.pdf.<n>.ppm`.
## Testing