Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in different files #3307

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ Execute the following command():
This will build three artifacts: `print-servlet-xxx.war`, `print-lib.jar`, `print-standalone.jar`.

The build also builds the documentation in the docs/build/site folder. To deploy the documentation it should
simply be copied to the `gh-pages` branch and then committed GitHub will automatically build the updated site
simply be copied to the `gh-pages` branch and then committed. GitHub will automatically build the updated site
at: <https://mapfish.github.io/mapfish-print/>

If you only want to build the docs simply run:
If you only want to build the docs, simply run:

```{.sourceCode .}
> ./gradlew docs:build
Expand Down
2 changes: 1 addition & 1 deletion core/src/test/resources/map-data/ol-demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
units: 'm',
// this resolution displays the globe in one 256x256 pixel tile
maxResolution: 78271.51695,
// these are the bounds of the globe in sperical mercator
// these are the bounds of the globe in spherical mercator
maxExtent: new OpenLayers.Bounds(-20037508, -20037508, 20037508, 20037508),
};
// construct a map with the above options
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This example demonstrates aliasing and attribute defaults.

Yaml has a feature called "Aliases" which allows the same object to be used in multiple places by
\_[tagging]() the object of interest with an alias and then \_[dereferencing]() the alias later when one
wishes to reuse the objct.
wishes to reuse the object.

The purpose of YAML aliasing in a YAML file is to reduce duplication in the files.

Expand Down